bhalash

Clearing floats

Oct 13th, 2014
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.21 KB | None | 0 0
  1. .parent {
  2.     overflow: auto;
  3.     width: 100%;
  4. }
  5.  
  6. .parent:after {
  7.     clear: both;
  8.     display: table;
  9. }
  10.  
  11. .child-1 {
  12.     float: left;
  13.     width: 50%;
  14. }
  15.  
  16. .child-2 {
  17.     float: right;
  18.     width: 50%;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment