1

我只有Internet Explorer 8有问题。

我不知道为什么要添加我做的网站的链接(我是新手):

网站 如果您在 IE8 中单击“Candidaturas”,您会看到文本已损坏,样式不起作用,在 IE9、Firefox、Chrome、Safari 中……运行良好……我不知道为什么。

div#candidaturas div#content div#columna h8 {
   margin : 0;
   padding : 0;
   text-align : left;
   font-family : Arial;
   font-size : 11px;
   font-variant : normal;
   color : #555;
}

div#candidaturas div#content div#columna h7 {
   text-align : left;
   font-family : Arial;
   font-size : 14px;
   font-weight : bold;
   font-variant : normal;
   color : #ff6b00;
}

有谁能够帮助我?

谢谢你们!

4

3 回答 3

4

没有h7和之类的标题h8。只有h1- h6。IE8 和 IE7 不理解未知元素,也不给它们设置样式。

于 2012-07-16T17:23:05.287 回答
3

您不能有多个具有相同 id 的 div。

您应该使用 class .columna而不是 id #columna

这将解决您的问题以及其他潜在的未来问题。

于 2012-07-16T17:22:36.083 回答
0

IE8 is likely not recognizing h7 and h8 tags because they are not a standard. Only up to h6 is standard. Also you have multiple Divs with the same ID. Divs have to have unique identifiers. Classes can have multiple instances.

于 2012-07-16T17:26:52.557 回答