test.html 857 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. justify-content: center;
  16. align-items: center;
  17. /* margin: auto; */
  18. }
  19. .smaller {
  20. height: 50%;
  21. justify-content: center;
  22. align-items: center;
  23. color: violet;
  24. }
  25. </style>
  26. </head>
  27. <body>
  28. <div class="container">
  29. <div class="smaller">
  30. hello world
  31. <div style="color: red;">
  32. goodbye
  33. <div>
  34. asdasdasd
  35. </div>
  36. </div>
  37. </div>
  38. </div>
  39. </body>
  40. </html>