CSS style not recognized in IE9

It drives me crazy. Here are some HTML and CSS that I have on the model page. The first intention was to have LI without any markers. I tried everything I could, but the list items will be displayed with a standard decimal marker. I used the developer tool that comes with IE9 to test UL and LI elements. It seems that IE does not recognize the css class recentAnnouncementsList at all. These elements do not display the style applied to it. All this setting works fine on Chrome. What am I missing?

thank

ul.recentAnnouncementsList
{
    margin-left: 0px;
    padding-left: 5px;
}

ul.recentAnnouncementsList li
{
    margin-left: 0px;
    padding-bottom: 5px;
    list-style-type:none;
}

ul.recentAnnouncementsList li a{
    color:#675DF0;text-decoration:none; font-size:0.85em;
}

ul.recentAnnouncementsList li span{
    display: block;
    text-indent: 0px;
    text-transform: none;
}

<td>
<div>
<ul class="recentAnnouncementsList" id="recentAnnouncements">
<li><a href="#">Released 1</a></li>
<li><a href="#">Release 2</a></li>
</ul>
</div>
</td>
+5
source share
3 answers

, . , CSS "container" . , IE FF, CSS . , IE. IE, . , UL/LI, . "container" , .

.

+6

IE9 IE8, html

<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE8"/>

css

+2

IE 6-9 , CSS. , , .recentAnnouncementsList, . , CSS :

0
source

All Articles