test.html 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Test</title>
  5. <style>
  6. html,
  7. body {
  8. height: 100%;
  9. }
  10. .container {
  11. width: 100%;
  12. height: 100%;
  13. display: flex;
  14. flex-direction: column;
  15. background-color: black;
  16. /* justify-content: center;
  17. align-items: center; */
  18. /* margin: auto; */
  19. }
  20. .smaller {
  21. height: 70%;
  22. width: 70%;
  23. background-color: green;
  24. /* justify-content: center; */
  25. /* align-items: center; */
  26. }
  27. .superinner {
  28. height: 100%;
  29. width: 100%;
  30. /* display: flex; */
  31. /* */
  32. margin-top: 20px;
  33. margin-bottom: 20px;
  34. margin-left: 20px;
  35. margin-right: 20px;
  36. /* */
  37. background-color: red;
  38. justify-content: center;
  39. align-items: center;
  40. flex-direction: column;
  41. /* margin: 20px; */
  42. /* margin: 20px; */
  43. }
  44. </style>
  45. </head>
  46. <body>
  47. <div class="container">
  48. <div class="smaller">
  49. <div class="superinner">
  50. <h1>Hello World</h1>
  51. <p>This is a test</p>
  52. </div>
  53. </div>
  54. </div>
  55. <!-- <div class="container">
  56. <div class="smaller">
  57. hello world
  58. <div style="color: green; margin: 40px;">
  59. goodbye
  60. <div style="color:red;">
  61. asdasdasd
  62. </div>
  63. </div>
  64. </div>
  65. </div> -->
  66. </body>
  67. </html>