Advertisement
poshtarboba

after - clear: both

Oct 15th, 2020
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. <style>
  2. .example {
  3. padding: 16px;
  4. border: 4px solid red;
  5. }
  6. .clearfix:after {
  7. content: "";
  8. display: block;
  9. clear: both;
  10. }
  11. .example .box {
  12. border: 2px solid blue;
  13. }
  14. .example .left {
  15. float: left;
  16. width: 250px;
  17. height: 60px;
  18. }
  19. .example .right {
  20. float: right;
  21. width: 400px;
  22. height: 80px;
  23. }
  24. </style>
  25.  
  26. <div class="example clearfix">
  27. <div class="box left">float: left;</div>
  28. <div class="box right">float: right;</div>
  29. </div>
  30.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement