Advertisement
Guest User

Untitled

a guest
Nov 16th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.63 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7. <title>Document</title>
  8. <style>
  9. *
  10. {
  11. margin:0;
  12. padding:0;
  13. }
  14. header
  15. {
  16. text-align: center;
  17. width: 100%;
  18. height: 40px;
  19. background-color: #000;
  20. color:#fff;
  21. }
  22. footer
  23. {
  24. text-align: center;
  25. width: 100%;
  26. height: 40px;
  27.  
  28. /* position:absolute;
  29. bottom:0; */
  30. background-color: #000;
  31. color:#fff;
  32. }
  33. .a
  34. {
  35. border:1px solid black;
  36. border:black;
  37. text-align: center;
  38. background-color: gray;
  39. color: gray;
  40. width: 100px;
  41. height: 500px;
  42. display: inline-block;
  43. vertical-align: middle;
  44. }
  45. .b
  46. {
  47. border:1px solid black;
  48. width: 100px;
  49. height: 500px;
  50. text-align: center;
  51. display: inline-block;
  52. vertical-align: middle;
  53. }
  54. .c
  55. {
  56. border:1px solid black;
  57. width: calc(100% - 423px);
  58. height: 500px;
  59. text-align: center;
  60. display: inline-block;
  61. vertical-align: middle;
  62. }
  63. </style>
  64. </head>
  65. <body>
  66. <header>Header</header>
  67. <div class="a">a</div>
  68. <div class="b">F<br>I<br>X<br>E<br>D</div>
  69. <div class="c">Fluid</div>
  70. <div class="b">F<br>I<br>X<br>E<br>D</div>
  71. <div class="a">a</div>
  72. <footer>Footer</footer>
  73. </body>
  74. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement