2行li菜单项

时间:2012-02-02 10:00:21

标签: html css html-lists

我的代码如下:

<ul>
    <li> <a href=""> Custom Decor</a></li>
    <li> <a href=""> Home Exterior </a></li>
    <li> <a href=""> Cleaning Services </a></li>
    <li> <a href=""> Heating & Cooling </a></li>
    <li> <a href=""> Parts, Repair & Maintanence </a></li>
    <li> <a href=""> Energy Effeciency </a></li>
    <li> <a href=""> Sears Telecom </a></li>
    <li> <a href=""> Protection Agreements </a></li>
</ul>

我所拥有的是 - enter image description here

我想要的是 -

-Decor低于Custom

- 家庭以外的

- 清洁等服务

像这样enter image description here

两行,两个单词..如何在CSS中执行此操作?

1 个答案:

答案 0 :(得分:3)

我可以建议你两个解决方案(第二个推荐):

  • <br />插入到应插入新行的文本中,或
  • 指定商品的CSS宽度,并将&nbsp;放在应出现在一行中的字词之间。