你了解的浏览器兼容问题有哪些?

ie8中图片边框问题

Ie8 中图片放在a标签中显示边框。

解决方案:

 img{
border:none;
}

ie8中背景复合属性写法问题

如下代码,在标准浏览器中均能正常显示背景图片,但是在ie8中图片显示异常。

.bg{ 
background:url(“./images/bg.jpg”)no-repeat center;
}

解决方案:在url和no-repeat之间加上空格

.bg{ 
background:url(“./images/bg.jpg”) no-repeat center;
}

其他ie低版本兼容性问题了解

1.在 IE6 及更早浏览器中定义小高度的容器?

解决方案:

#test{
overflow:hidden;
height:1px;
font-size:0;
line-height:0;
}

原文地址:https://www.cnblogs.com/-candy/p/14213118.html