Guest User

Untitled

a guest
May 21st, 2012
22
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. <html>
  2. <head>
  3. <style>
  4. div#menu {
  5. float: left;
  6. width: 250px;
  7. background-color: red;
  8. }
  9. div#content {
  10. float: left;
  11. margin-left: 20px;
  12. background-color: blue;
  13. }
  14. table#tbl {
  15. width: 100%;
  16. background-color: green;
  17. }
  18. </style>
  19. </head>
  20. <body>
  21. <div id="menu">
  22. menu
  23. </div>
  24. <div id="content">
  25. before table
  26. <table id="tbl">
  27. <tr><td>table content</td></tr>
  28. <tr><td>table content</td></tr>
  29. </table>
  30. after table
  31. </div>
  32. </body>
  33. </html>
Advertisement
Add Comment
Please, Sign In to add comment