Added solution to "01-Responsive Web design" challenge (#36968)

This commit is contained in:
CubeSky
2019-10-03 15:11:38 +01:00
committed by Huyen Nguyen
parent af6a172145
commit 3099f303ed

View File

@ -85,7 +85,42 @@ tests:
## Solution
<section id='solution'>
```js
// solution required
```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: 20px 40px 20px 40px;
}
.red-box {
background-color: crimson;
color: #fff;
padding: 20px 40px 20px 40px;
}
.blue-box {
background-color: blue;
color: #fff;
padding: 40px 20px 20px 40px;
}
</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>
```
</section>