Chrome / IE css不兼容

时间:2013-06-09 20:41:20

标签: css internet-explorer google-chrome

此网站上的第一个菜单项在IE中无法正确显示,但我确实是Chrome浏览器。我使用css text-indent来创建图像菜单项。

http://test.suntliv.nu/

在chrome中你可以看到一个房子的图标。在IE中你会看到字母“Sta”。

编辑:我通过给第一个菜单项添加一个唯一的类名来修复它。

1 个答案:

答案 0 :(得分:0)

for IE尝试使用first-child代替first-of-type

.top-menu li:first-child {
text-indent: -1000px;
background-image: url('../image/icon_home.png');
padding-right: 0px;
}