01.html 487 B

12345678910111213141516171819202122232425262728
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. <style>
  7. .demo {
  8. line-height: 80px;
  9. background-color: grey;
  10. }
  11. .demo span {
  12. background-color: green;
  13. line-height: 14px;
  14. font-size: 14px;
  15. /*vertical-align: top;*/
  16. }
  17. </style>
  18. </head>
  19. <body>
  20. <div class="demo">
  21. 456
  22. <span style="color: blue">你好</span>
  23. </div>
  24. </body>
  25. </html>