* feat(tools): add seed/solution restore script * chore(curriculum): remove empty sections' markers * chore(curriculum): add seed + solution to Chinese * chore: remove old formatter * fix: update getChallenges parse translated challenges separately, without reference to the source * chore(curriculum): add dashedName to English * chore(curriculum): add dashedName to Chinese * refactor: remove unused challenge property 'name' * fix: relax dashedName requirement * fix: stray tag Remove stray `pre` tag from challenge file. Signed-off-by: nhcarrigan <nhcarrigan@gmail.com> Co-authored-by: nhcarrigan <nhcarrigan@gmail.com>
119 lines
2.3 KiB
Markdown
119 lines
2.3 KiB
Markdown
---
|
|
id: bad88fee1348bd9aedf08825
|
|
title: Adjust the Padding of an Element
|
|
challengeType: 0
|
|
videoUrl: 'https://scrimba.com/c/cED8ZC2'
|
|
forumTopicId: 301083
|
|
dashedName: adjust-the-padding-of-an-element
|
|
---
|
|
|
|
# --description--
|
|
|
|
Now let's put our Cat Photo App away for a little while and learn more about styling HTML.
|
|
|
|
You may have already noticed this, but all HTML elements are essentially little rectangles.
|
|
|
|
Three important properties control the space that surrounds each HTML element: `padding`, `border`, and `margin`.
|
|
|
|
An element's `padding` controls the amount of space between the element's content and its `border`.
|
|
|
|
Here, we can see that the blue box and the red box are nested within the yellow box. Note that the red box has more `padding` than the blue box.
|
|
|
|
When you increase the blue box's `padding`, it will increase the distance (`padding`) between the text and the border around it.
|
|
|
|
# --instructions--
|
|
|
|
Change the `padding` of your blue box to match that of your red box.
|
|
|
|
# --hints--
|
|
|
|
Your `blue-box` class should give elements `20px` of `padding`.
|
|
|
|
```js
|
|
assert($('.blue-box').css('padding-top') === '20px');
|
|
```
|
|
|
|
# --seed--
|
|
|
|
## --seed-contents--
|
|
|
|
```html
|
|
<style>
|
|
.injected-text {
|
|
margin-bottom: -25px;
|
|
text-align: center;
|
|
}
|
|
|
|
.box {
|
|
border-style: solid;
|
|
border-color: black;
|
|
border-width: 5px;
|
|
text-align: center;
|
|
}
|
|
|
|
.yellow-box {
|
|
background-color: yellow;
|
|
padding: 10px;
|
|
}
|
|
|
|
.red-box {
|
|
background-color: crimson;
|
|
color: #fff;
|
|
padding: 20px;
|
|
}
|
|
|
|
.blue-box {
|
|
background-color: blue;
|
|
color: #fff;
|
|
padding: 10px;
|
|
}
|
|
</style>
|
|
<h5 class="injected-text">margin</h5>
|
|
|
|
<div class="box yellow-box">
|
|
<h5 class="box red-box">padding</h5>
|
|
<h5 class="box blue-box">padding</h5>
|
|
</div>
|
|
```
|
|
|
|
# --solutions--
|
|
|
|
```html
|
|
<style>
|
|
.injected-text {
|
|
margin-bottom: -25px;
|
|
text-align: center;
|
|
}
|
|
|
|
.box {
|
|
border-style: solid;
|
|
border-color: black;
|
|
border-width: 5px;
|
|
text-align: center;
|
|
}
|
|
|
|
.yellow-box {
|
|
background-color: yellow;
|
|
padding: 10px;
|
|
}
|
|
|
|
.red-box {
|
|
background-color: crimson;
|
|
color: #fff;
|
|
padding: 20px;
|
|
}
|
|
|
|
.blue-box {
|
|
background-color: blue;
|
|
color: #fff;
|
|
padding: 20px;
|
|
}
|
|
</style>
|
|
<h5 class="injected-text">margin</h5>
|
|
|
|
<div class="box yellow-box">
|
|
<h5 class="box red-box">padding</h5>
|
|
<h5 class="box blue-box">padding</h5>
|
|
</div>
|
|
```
|