You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
281 B
21 lines
281 B
#div0 {
|
|
width: 100%;
|
|
height: 500px;
|
|
}
|
|
|
|
#div0 div {
|
|
float: left;
|
|
height: 100px
|
|
}
|
|
|
|
#div0 div:nth-child(1) {
|
|
background-color: aqua;
|
|
}
|
|
|
|
#div0 div:nth-child(2) {
|
|
background-color: red;
|
|
}
|
|
|
|
#div0 div:nth-child(3) {
|
|
background-color: green;
|
|
}
|