Advertisement
Guest User

Untitled

a guest
Jul 25th, 2014
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <div id='container'>
  2. <div id='left'>
  3. this is some really long text that takes up a lot of room since it is so long
  4. </div>
  5. <div id='right'>
  6. <a>this is a link</a>
  7. </div>
  8. </div>
  9.  
  10. #container{
  11. width: 100%;
  12. background: red;
  13. }
  14.  
  15. #left{
  16. display: inline-block;
  17. background: green;
  18. }
  19.  
  20. #right{
  21. display: inline-block;
  22. margin: 15px;
  23. background: yellow;
  24. }
  25.  
  26. #right a{
  27. padding: 5px 20px;
  28. }}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement