116 lines
2.1 KiB
Markdown
116 lines
2.1 KiB
Markdown
![]() |
---
|
||
|
id: bad87fee1348bd9aedf08823
|
||
|
title: 要素に負の値のマージンを追加する
|
||
|
challengeType: 0
|
||
|
videoUrl: 'https://scrimba.com/c/cnpyGs3'
|
||
|
forumTopicId: 16166
|
||
|
dashedName: add-a-negative-margin-to-an-element
|
||
|
---
|
||
|
|
||
|
# --description--
|
||
|
|
||
|
要素の `margin` は、要素の `border` とその外側の要素の間のスペースを制御します。
|
||
|
|
||
|
要素の `margin` を負の値に設定すると、要素は大きくなります。
|
||
|
|
||
|
# --instructions--
|
||
|
|
||
|
`margin` を赤い四角の値のように負の値に設定してみましょう。
|
||
|
|
||
|
青い四角の `margin` を `-15px` に変更し、黄色い四角の横幅いっぱい広がるようにしてください。
|
||
|
|
||
|
# --hints--
|
||
|
|
||
|
`blue-box` クラスは、要素に `-15px` の `margin` を与える必要があります。
|
||
|
|
||
|
```js
|
||
|
assert($('.blue-box').css('margin-top') === '-15px');
|
||
|
```
|
||
|
|
||
|
# --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;
|
||
|
margin: -15px;
|
||
|
}
|
||
|
|
||
|
.blue-box {
|
||
|
background-color: blue;
|
||
|
color: #fff;
|
||
|
padding: 20px;
|
||
|
margin: 20px;
|
||
|
}
|
||
|
</style>
|
||
|
|
||
|
<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;
|
||
|
margin: -15px;
|
||
|
}
|
||
|
|
||
|
.blue-box {
|
||
|
background-color: blue;
|
||
|
color: #fff;
|
||
|
padding: 20px;
|
||
|
margin: 20px;
|
||
|
margin-top: -15px;
|
||
|
}
|
||
|
</style>
|
||
|
|
||
|
<div class="box yellow-box">
|
||
|
<h5 class="box red-box">padding</h5>
|
||
|
<h5 class="box blue-box">padding</h5>
|
||
|
</div>
|
||
|
```
|