12345678910111213141516171819202122232425262728 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>Title</title>
- <style>
- .demo {
- line-height: 80px;
- background-color: grey;
- }
- .demo span {
- background-color: green;
- line-height: 14px;
- font-size: 14px;
- /*vertical-align: top;*/
- }
- </style>
- </head>
- <body>
- <div class="demo">
- 456
- <span style="color: blue">你好</span>
- </div>
- </body>
- </html>
|