Guest User

Untitled

a guest
Feb 23rd, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. .header{
  2. background-color: brown;
  3. height: 20px;
  4. border: solid black 3px;
  5. }
  6. .container{
  7. border: solid blue 2px;
  8. /* 2nd Method */
  9. /* overflow:hidden; */
  10. }
  11. .childcontent{
  12. background-color: chocolate;
  13. width:50px;
  14. border: solid;
  15. margin: 3px;
  16. float: left;
  17. }
  18. .footer{
  19. background-color: pink;
  20. height:20px;
  21. border: solid red 2px;
  22.  
  23. }
  24.  
  25. /* 1st Method */
  26. /* .faltu{
  27. clear: both;
  28. } */
  29.  
  30.  
  31. /* Last and Best Method */
  32. .container::after{
  33. content:" ";
  34. display:block;
  35. clear:both;
  36. *zoom:1;
  37. }
Add Comment
Please, Sign In to add comment