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-positionisoutside, bullets of anuland numbers of anoldo 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:
I've seen my bullets/numbers get clipped when there is not enough padding on the left side of the ul. Try adding a bit and see if that helps.
Post a Comment for "Css Overflow:hidden Hiding A List's Bullets?"