156 lines
4.3 KiB
Markdown
156 lines
4.3 KiB
Markdown
![]() |
---
|
|||
|
id: bad87fee1348bd9acdf08812
|
|||
|
title: Визначте розмір ваших зображень
|
|||
|
challengeType: 0
|
|||
|
forumTopicId: 18282
|
|||
|
dashedName: size-your-images
|
|||
|
---
|
|||
|
|
|||
|
# --description--
|
|||
|
|
|||
|
CSS має властивість під назвою `width`, яка контролює ширину елемента. Так само, як і зі шрифтами, ми будемо використовувати `px` (пікселі), щоб вказати на ширину зображення.
|
|||
|
|
|||
|
Наприклад, якби ми хотіли створити CSS клас під назвою `larger-image`, що дав HTML елементи шириною 500 пікселів, ми б використали:
|
|||
|
|
|||
|
```html
|
|||
|
<style>
|
|||
|
.larger-image {
|
|||
|
width: 500px;
|
|||
|
}
|
|||
|
</style>
|
|||
|
```
|
|||
|
|
|||
|
# --instructions--
|
|||
|
|
|||
|
Створіть клас під назвою `smaller-image` і використайте його, щоб змінити розмір зображення так, щоб воно було лише 100 пікселів в ширину.
|
|||
|
|
|||
|
# --hints--
|
|||
|
|
|||
|
Ваш елемент `img` повинен мати клас `smaller-image`.
|
|||
|
|
|||
|
```js
|
|||
|
assert(
|
|||
|
$("img[src='https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg']").attr('class')
|
|||
|
.trim().split(/\s+/g).includes('smaller-image')
|
|||
|
);
|
|||
|
```
|
|||
|
|
|||
|
Ваше зображення повинне бути 100 пікселів в ширину.
|
|||
|
|
|||
|
```js
|
|||
|
assert(
|
|||
|
$('img').width() < 200 &&
|
|||
|
code.match(/\.smaller-image\s*{\s*width\s*:\s*100px\s*(;\s*}|})/i)
|
|||
|
);
|
|||
|
```
|
|||
|
|
|||
|
# --seed--
|
|||
|
|
|||
|
## --seed-contents--
|
|||
|
|
|||
|
```html
|
|||
|
<link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet" type="text/css">
|
|||
|
<style>
|
|||
|
.red-text {
|
|||
|
color: red;
|
|||
|
}
|
|||
|
|
|||
|
h2 {
|
|||
|
font-family: Lobster, monospace;
|
|||
|
}
|
|||
|
|
|||
|
p {
|
|||
|
font-size: 16px;
|
|||
|
font-family: monospace;
|
|||
|
}
|
|||
|
</style>
|
|||
|
|
|||
|
<h2 class="red-text">CatPhotoApp</h2>
|
|||
|
<main>
|
|||
|
<p class="red-text">Click here to view more <a href="#">cat photos</a>.</p>
|
|||
|
|
|||
|
<a href="#"><img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back."></a>
|
|||
|
|
|||
|
<div>
|
|||
|
<p>Things cats love:</p>
|
|||
|
<ul>
|
|||
|
<li>cat nip</li>
|
|||
|
<li>laser pointers</li>
|
|||
|
<li>lasagna</li>
|
|||
|
</ul>
|
|||
|
<p>Top 3 things cats hate:</p>
|
|||
|
<ol>
|
|||
|
<li>flea treatment</li>
|
|||
|
<li>thunder</li>
|
|||
|
<li>other cats</li>
|
|||
|
</ol>
|
|||
|
</div>
|
|||
|
|
|||
|
<form action="https://freecatphotoapp.com/submit-cat-photo">
|
|||
|
<label><input type="radio" name="indoor-outdoor" checked> Indoor</label>
|
|||
|
<label><input type="radio" name="indoor-outdoor"> Outdoor</label><br>
|
|||
|
<label><input type="checkbox" name="personality" checked> Loving</label>
|
|||
|
<label><input type="checkbox" name="personality"> Lazy</label>
|
|||
|
<label><input type="checkbox" name="personality"> Energetic</label><br>
|
|||
|
<input type="text" placeholder="cat photo URL" required>
|
|||
|
<button type="submit">Submit</button>
|
|||
|
</form>
|
|||
|
</main>
|
|||
|
```
|
|||
|
|
|||
|
# --solutions--
|
|||
|
|
|||
|
```html
|
|||
|
<link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet" type="text/css">
|
|||
|
<style>
|
|||
|
.red-text {
|
|||
|
color: red;
|
|||
|
}
|
|||
|
|
|||
|
h2 {
|
|||
|
font-family: Lobster, monospace;
|
|||
|
}
|
|||
|
|
|||
|
p {
|
|||
|
font-size: 16px;
|
|||
|
font-family: monospace;
|
|||
|
}
|
|||
|
|
|||
|
.smaller-image {
|
|||
|
width: 100px;
|
|||
|
}
|
|||
|
</style>
|
|||
|
|
|||
|
<h2 class="red-text">CatPhotoApp</h2>
|
|||
|
<main>
|
|||
|
<p class="red-text">Click here to view more <a href="#">cat photos</a>.</p>
|
|||
|
|
|||
|
<a href="#"><img class="smaller-image" src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back."></a>
|
|||
|
|
|||
|
<div>
|
|||
|
<p>Things cats love:</p>
|
|||
|
<ul>
|
|||
|
<li>cat nip</li>
|
|||
|
<li>laser pointers</li>
|
|||
|
<li>lasagna</li>
|
|||
|
</ul>
|
|||
|
<p>Top 3 things cats hate:</p>
|
|||
|
<ol>
|
|||
|
<li>flea treatment</li>
|
|||
|
<li>thunder</li>
|
|||
|
<li>other cats</li>
|
|||
|
</ol>
|
|||
|
</div>
|
|||
|
|
|||
|
<form action="https://freecatphotoapp.com/submit-cat-photo">
|
|||
|
<label><input type="radio" name="indoor-outdoor" checked> Indoor</label>
|
|||
|
<label><input type="radio" name="indoor-outdoor"> Outdoor</label><br>
|
|||
|
<label><input type="checkbox" name="personality" checked> Loving</label>
|
|||
|
<label><input type="checkbox" name="personality"> Lazy</label>
|
|||
|
<label><input type="checkbox" name="personality"> Energetic</label><br>
|
|||
|
<input type="text" placeholder="cat photo URL" required>
|
|||
|
<button type="submit">Submit</button>
|
|||
|
</form>
|
|||
|
</main>
|
|||
|
```
|