Advertisement
Guest User

Untitled

a guest
Sep 16th, 2014
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. <body>
  2. <header></header>
  3. <main>
  4. <section>
  5. <section class="innersection">
  6. some content
  7. </section>
  8. <aside class="sidebar">
  9. snas
  10. </aside>
  11. </section>
  12. </main>
  13. <footer></footer>
  14. </body>
  15.  
  16. main{
  17. width: 100%;
  18. min-height: 800px;
  19. }
  20.  
  21. .innersection{
  22. float:left;
  23. width:94%;
  24. display:inline;
  25. }
  26. .sidebar{
  27. float:right;
  28. width:5%;
  29. display:inline;
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement