兼容性—IE6/7下当li里面的元素都浮动,li之间会产生4px的缝隙
Posted 影子疯
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了兼容性—IE6/7下当li里面的元素都浮动,li之间会产生4px的缝隙相关的知识,希望对你有一定的参考价值。
代码如下:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <style> ul{ margin: 0px; padding: 0px; width: 300px; list-style: none; } li{ height: 30px; line-height: 30px; border:1px solid red; } ul li a{ float: left; text-decoration: none; } ul li p{ margin: 0px; float:right; } </style> </head> <body> <ul> <li> <a href="#">左边</a> <p>右边</p> </li> <li> <a href="#">左边</a> <p>右边</p> </li> <li> <a href="#">左边</a> <p>右边</p> </li> </ul> </body> </html>
效果如下:
解决方案:给li元素加上*vertical-align: top;属性
li{
height: 30px;
line-height: 30px;
border:1px solid red;
*vertical-align: top;
}
以上是关于兼容性—IE6/7下当li里面的元素都浮动,li之间会产生4px的缝隙的主要内容,如果未能解决你的问题,请参考以下文章