div+css <li>标签之间有间距

2025-01-02 22:11:48
推荐回答(5个)
回答1:

取消Li标签之间的间距可以用样式来处理,list-sytle-type:none 这样子就不会出现间距了,因为li标签系统会默认给他样式的。

回答2:

=w=!
把 下一个的开始 li 写到上一个的结束 li 后
如:





  • 而不要这样:



  • 就这样……

    回答3:

    li{float: left}即可

    回答4:

    在li里加上vertical-align:bottom

    回答5:

    * { padding:0; margin:0; font-size:12px; color:#f00; line-height:25px;}
    img{ border: 0px;}
    a {text-decoration:none; width:100px; background:#0f0;}
    li{ list-style-type:none;}
    .aaa1{width:300px; height:250px; background:#000}
    .aaa1 ul li{height:25px; background:#0ff; }
    .aaa1 ul li span{ float:right; width:80px;background:#00f;display:block;}/* 增加*/
    #aaa2{display:block; width:100px; background:#0f0;}/*去掉float*/
    #aaa3{display:block; float:right; width:80px; background:#00f;}/*删除*/





    主要是float 惹的祸 你考虑hacker 还不如最好同时使用right left