取消Li标签之间的间距可以用样式来处理,list-sytle-type:none 这样子就不会出现间距了,因为li标签系统会默认给他样式的。
=w=!
把 下一个的开始 li 写到上一个的结束 li 后
如:
li{float: left}即可
在li里加上vertical-align:bottom
* { 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;}/*删除*/