Guest User

Untitled

a guest
Jul 17th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. /* Clear Floated Elements
  2. ----------------------------------------------------------------------------------------------------*/
  3.  
  4.  
  5. .clear {
  6. clear: both;
  7. display: block;
  8. overflow: hidden;
  9. visibility: hidden;
  10. width: 0;
  11. height: 0;
  12. }
  13.  
  14.  
  15. .clearfix:after {
  16. clear: both;
  17. content: ' ';
  18. display: block;
  19. font-size: 0;
  20. line-height: 0;
  21. visibility: hidden;
  22. width: 0;
  23. height: 0;
  24. }
  25.  
  26. .clearfix {
  27. display: inline-block;
  28. }
  29.  
  30. * html .clearfix {
  31. height: 1%;
  32. }
  33.  
  34. .clearfix {
  35. display: block;
  36. }
Add Comment
Please, Sign In to add comment