1

我正在编写 HTML/css 代码并且在 IE6 中有一个特定的错误。

我想创建可变的 div,使用类:

例如(这只是示例,不是实际项目代码)

.top {width: 50px;}
.top.selected {background: #f00;}
.mid {width: 114px;}
.mid.selected {background: #0f0;}
.bot {width: 100px;}
.bot.selected {background: #0ff; color: #f00;}
...etc...

因此,html 将类似于:

<div class='top selected'>1</div>
<div class='mid'>2</div>
<div class='bot selected'>3</div>

这对程序员来说很棒,但它在 IE6 中不起作用:(

只有.topselected {background: #f00;} // <div class='top topselected'> ,但它真的很脏代码......也许有些有一些黑客?

4

1 回答 1

0

似乎去这里的方法是创建更多的语义类名,然后将它们拆分如下:

.highlighted { background: #0f0; }
.wide { width: 114px; }
/* etc... */

然后您拥有的 html 将运行良好,并且 IMO 更易于维护。

于 2012-12-18T19:01:24.827 回答