ivapopova

2column_layout_with_inline_block.html

Aug 4th, 2018
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>VFM</title>
  6. <style type="text/css">
  7. body{
  8. margin: 0;
  9. }
  10. .header, .footer{
  11. font-size: 3em;
  12. height: 10vh;
  13. text-align: center;
  14. }
  15. .header{
  16. background: #333;
  17. color: #CCC;
  18. }
  19. .footer{
  20. background: #CCC;
  21. color: #333;
  22. }
  23. .main{
  24. height: 80vh;
  25. /*border: 5px solid red;*/
  26. box-sizing: border-box;
  27. }
  28. .left{
  29. display: inline-block;
  30. vertical-align: top;
  31. width: 30%;
  32. height: 100%;
  33. background: #fcc;
  34. }
  35. .right{
  36. display: inline-block;
  37. vertical-align: top;
  38. width: 70%;
  39. height: 80vh;
  40. margin-left: -0.25em;
  41. background: #ccf;
  42. opacity: 0.5;
  43. }
  44.  
  45. </style>
  46. </head>
  47. <body>
  48. <div class="header">header</div>
  49. <div class="main">
  50. <div class="left"></div>
  51. <div class="right"></div>
  52. </div>
  53. <div class="footer">footer</div>
  54. </body>
  55. </html>
Advertisement
Add Comment
Please, Sign In to add comment