Advertisement
Guest User

Untitled

a guest
Mar 28th, 2015
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. <div id="container">
  2.  
  3. <div id="middle">Centered to middle</div>
  4.  
  5. <div id="right">I want to to be to the right</div>
  6.  
  7. </div>
  8.  
  9. #container {
  10. position: relative;
  11. width: 100%;
  12. }
  13.  
  14. #middle {
  15. margin: 0 auto;
  16. position: relative;
  17. width: 100%;
  18. max-width:150px;
  19. height:300px;
  20. }
  21.  
  22. #right {
  23. max-width:150px;
  24. width:100%;
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement