123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- ul{
- list-style: none;
- /*
- 解决行级块元素中间的空白
- 设置字体大小为0
- 去掉回车加空白 (删除或者注释掉)
- 浮动float
- */
- font-size:0;
- }
- li{
- width:120px;
- background: red;
- display: inline-block;
- font-size: 16px;
- }
- </style>
- </head>
- <body>
- <ul>
- <li>111</li>
- <li>222</li>
- <li>333</li>
- <li>444</li>
- <li>555</li>
- </ul>
- </body>
- </html>
|