Advertisement
LegoDrifter

WebStorm 2

Jul 1st, 2020
263
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.22 KB | None | 0 0
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport"
  6. content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
  7. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  8. <link rel="stylesheet" href="css/style.css">
  9. <title>Float & Align</title>
  10. </head>
  11. <body>
  12. <div class="container">
  13. <div id="box-1" class="box">
  14. <h3>Box One</h3>
  15. <p>Magister de noster abaculus, tractare quadra!<br>
  16. The karma needs heaven which is not apostolic.<br>
  17. Become and you will be hurted extraordinarilly.<br>
  18. To some, a power is a vision for synthesising.</p>
  19. </div>
  20. <div id="box-2" class="box">
  21. <h3>Box Two</h3>
  22. <p>Magister de noster abaculus, tractare quadra!<br>
  23. The karma needs heaven which is not apostolic.<br>
  24. Become and you will be hurted extraordinarilly.<br>
  25. To some, a power is a vision for synthesising.</p>
  26. </div>
  27. <div id="box-3" class="box">
  28. <h3>Box Three</h3>
  29. <p>Magister de noster abaculus, tractare quadra!<br>
  30. The karma needs heaven which is not apostolic.<br>
  31. Become and you will be hurted extraordinarilly.<br>
  32. To some, a power is a vision for synthesising.</p>
  33. </div>
  34. <div class="clr"></div>
  35. <div id="box-4" class="box">
  36. <h3>Box Four</h3>
  37. <p>Magister de noster abaculus, tractare quadra!<br>
  38. The karma needs heaven which is not apostolic.<br>
  39. Become and you will be hurted extraordinarilly.<br>
  40. To some, a power is a vision for synthesising.</p>
  41. </div>
  42. </div>
  43.  
  44. </body>
  45.  
  46.  
  47.  
  48.  
  49. *{
  50. box-sizing: border-box;
  51. }
  52. .container
  53. {
  54. max-width: 500px;
  55. text-align: center;
  56. text-align: justify;
  57. margin: 30px auto;
  58. }
  59. .clr
  60. {
  61. clear: both;
  62. }
  63. body
  64. {
  65. font-family: Arial, sans-serif;
  66. line-height: 1.4em;
  67. }
  68. .box
  69. {
  70. background: moccasin;
  71. border: 1px solid darkgray;
  72. padding: 20px;
  73. margin-bottom: 15px;
  74. }
  75. .box p
  76. {
  77. /* Text Align */
  78. }
  79. #box-2
  80. {
  81. float:left;
  82. width: 50%;
  83.  
  84. }
  85. #box-3
  86. {
  87. float:right;
  88. width: 50%;
  89. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement