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'>
ですが、それは本当に汚いコードです...多分いくつかのハックがありますか?