Unordered Lists

Soldato
Joined
18 Oct 2002
Posts
5,381
Can anyone give me some good css for displaying a basic unordered list that looks good in ie 6+ and in firefox as i cant seem to get anything to look good in ie even using seperate css sheets for ie.

Thanks
 
Something like this should be fine.

Code:
ul { margin: 0 0 0 20px; padding: 0; list-style: disc;}
ul li { padding: 0 0 0 10px;}
ul li ul { list-style: circle;}
 
Back
Top Bottom