ANP
ANP

Reputation: 15617

<ul> Style property works in FireFox but not in IE

I have an unordered list and I have set the style property 'none' so that the circles are not displayed before the list items. It works fine in Firefox but in IE still those circle are present. So can any one help me how to it in IE also?

I have written like:

            <ul type="none" style="text-align:left;">  
            <li><a href="a.aspx">Item1</a></li>
            <li><a href="b.aspx">Item2</a></li>
            <li><a href="c.aspx">Item3</a></li>
            </ul>

Upvotes: 0

Views: 494

Answers (1)

use this ,

<ul style="list-style-type:none">
.....

</ul>

Upvotes: 3

Related Questions