So the thing is that in Firefox 4 the list-style bullets transf开发者_如何学Corm to '0.'
No matter which list-style-type I choose (except circle, disc and square).All the other browsers don't seem to have a problem with it.
Well except for IE then.You guys have any idea how I can solve this problem?
EDIT
=> http://icid-testing.heroku.com/This appears to work if you just remove overflow: hidden;
from the ol li
rule.
ol li {
list-style: hiragana inside none;
margin-bottom: 2px;
/* overflow: hidden; */
white-space: nowrap;
word-wrap: break-word;
}
Have you used a tool such as Firebug or Web Developer to see what CSS classes are getting selected and applied? Perhaps there is a CSS class that is getting applied and that has higher precedence, i.e. something with !important, or a CSS rule that is more specific that's overriding your CSS rules.
精彩评论