Css Overflow:hidden Hiding A List's Bullets?
I've just noticed something funny. Let's say I have a HTML list:
- Lorem
- ipsum
- dolor
Solution 1:
This is the default behavior as far as I´m aware, if the
list-style-position
isoutside
, bullets of anul
and numbers of anol
do not show. At least in Firefox, I remember seeing it before in older versions.Solution 2:
Browsers add default margin and padding to lists. Try using a reset.css first to remove default styles that way you can start clean and fresh without unexpected behavior. Do a search for Eric Meyer's reset. Hope it helps.
Solution 3:
Post a Comment for "Css Overflow:hidden Hiding A List's Bullets?"