Advertisement
Guest User

Untitled

a guest
Apr 17th, 2014
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. <div>
  2. <p>I'm a paragraph and I'm on the left!!!</p>
  3. <h3>I'm a header and I'm on the right</h3>
  4. </div>
  5.  
  6. div p{
  7. float: left;
  8. width:30%;
  9. border: 1px solid blue;
  10. }
  11.  
  12. div h3{
  13. clear: both;
  14. float:left;
  15. width:10%;
  16. border: 1px solid red;
  17. }
  18.  
  19. .clear:after {
  20. clear: both;
  21. content: "";
  22. display: table;
  23. }
  24.  
  25. <div class="clear">
  26. <p>I'm a paragraph and I'm on the left!!!</p>
  27. <h3>I'm a header and I'm on the right</h3>
  28. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement