11_inline-block.html 902 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. ul{
  10. list-style: none;
  11. /*
  12. 解决行级块元素中间的空白
  13. 设置字体大小为0
  14. 去掉回车加空白 (删除或者注释掉)
  15. 浮动float
  16. */
  17. font-size:0;
  18. }
  19. li{
  20. width:120px;
  21. background: red;
  22. display: inline-block;
  23. font-size: 16px;
  24. }
  25. </style>
  26. </head>
  27. <body>
  28. <ul>
  29. <li>111</li>
  30. <li>222</li>
  31. <li>333</li>
  32. <li>444</li>
  33. <li>555</li>
  34. </ul>
  35. </body>
  36. </html>