index.html 587 B

123456789101112131415161718192021222324252627282930
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. <style>
  9. .test {
  10. height: 10em;
  11. text-align: center;
  12. }
  13. .test::before {
  14. content: '';
  15. display: inline-block;
  16. height: 100%;
  17. /* vertical-align: middle; */
  18. }
  19. img {
  20. vertical-align: middle;
  21. }
  22. </style>
  23. </head>
  24. <body>
  25. <div class="test">
  26. <img src="../public/favicon.ico" alt="">
  27. </div>
  28. </body>
  29. </html>