开发者

Why does Firefox 4 transform every list-item bullet into '0.'

开发者 https://www.devze.com 2023-02-26 18:39 出处:网络
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).

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).

Why does Firefox 4 transform every list-item bullet into '0.'

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.

0

精彩评论

暂无评论...
验证码 换一张
取 消