Guest User

Untitled

a guest
Feb 18th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.28 KB | None | 0 0
  1. #container {
  2.     height: 300px;
  3.     .div {
  4.         width: 30px;
  5.         background-color: blue;
  6.     }
  7. }
  8. ul#footer {
  9.     list-style: none;
  10. }
  11.  
  12. /*
  13.     Turns into:
  14. */
  15.  
  16. #container {
  17.     height: 300px;
  18. }
  19. #container .div {
  20.     width: 30px;
  21.     background-color: blue;
  22. }
  23. ul#footer {
  24.     list-style: none;
  25. }
Add Comment
Please, Sign In to add comment