1 から 50 までの番号の投稿のリストがある Web サイトがあります。Chrome、Firefox、IE 10 では動作しますが、IE 8 以下では動作しません....
私はこれを持っています:<ol id="post-list" class="lol" start="1">
CSS:
#entry-list > li:before {
border-bottom: 1px solid #D9D9D9;
color: gray;
content: attr(value);
width: 100%;
}
#entry-list {
list-style: none outside none;
margin-top: 0;
word-wrap: break-word;
}
#entry-list .content{margin-bottom:10px}
#entry-list>li{position:relative}
#entry-list>li:not(:last-child){margin-bottom:30px}
問題: IE 8 (またはそれ以前) にはボーダーボトムがなく、1 で始まる属性/値/リストもありません。どうすれば機能させられますか? IE 固有のスタイルシートが に応答しないのはなぜ#entry-list > li:before
ですか?