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.

20 lines
281 B

2 years ago
  1. #div0 {
  2. width: 100%;
  3. height: 500px;
  4. }
  5. #div0 div {
  6. float: left;
  7. height: 100px
  8. }
  9. #div0 div:nth-child(1) {
  10. background-color: aqua;
  11. }
  12. #div0 div:nth-child(2) {
  13. background-color: red;
  14. }
  15. #div0 div:nth-child(3) {
  16. background-color: green;
  17. }