Skip to content

Commit e12cf56

Browse files
committed
newbie css exercise for session 16
1 parent 102e498 commit e12cf56

File tree

3 files changed

+66
-0
lines changed

3 files changed

+66
-0
lines changed

exercises/css-missing-slice/README.md

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
---
2+
difficulty:
3+
- newbie
4+
OAs:
5+
- css selectors
6+
- flex-box
7+
projects:
8+
- data lovers
9+
- social network
10+
---
11+
12+
# CSS Missing Slice
13+
14+
[https://cssbattle.dev/play/6](https://cssbattle.dev/play/6)
15+
16+
![CSS Missing Slice](css-missing-slice.png)
17+
18+
__Objetivo__
19+
20+
Escriba el HTML/CSS en el editor para replicar la imagen objetivo de la derecha.
21+
22+
__Código de base__
23+
24+
```html
25+
<div></div>
26+
<style>
27+
div {
28+
width: 100px;
29+
height: 100px;
30+
background: #dd6b4d;
31+
}
32+
</style>
33+
```
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
---
2+
difficulty:
3+
- newbie
4+
OAs:
5+
- css selectors
6+
- flex-box
7+
projects:
8+
- data lovers
9+
- social network
10+
---
11+
12+
# CSS Missing Slice
13+
14+
[https://cssbattle.dev/play/6](https://cssbattle.dev/play/6)
15+
16+
![CSS Missing Slice](css-missing-slice.png)
17+
18+
__Objetivo__
19+
20+
Escreva o HTML/CSS no editor para replicar a imagem de destino à direita.
21+
22+
__Código base__
23+
24+
```html
25+
<div></div>
26+
<style>
27+
div {
28+
width: 100px;
29+
height: 100px;
30+
background: #dd6b4d;
31+
}
32+
</style>
33+
```
Loading

0 commit comments

Comments
 (0)