I have a website which has a list of posts that numbers from 1 to 50. It works in Chrome, Firefox and IE 10, but not in IE 8 or lower....
I have this one: <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}
The problem: no border-bottom in IE 8 (or lower) and no attribute/value/ list starting with 1. How can I make it work? Why does my IE-specific stylesheet not respond to #entry-list > li:before
?