Tagged Questions
The list-style-type tag has no wiki summary.
13
votes
1answer
157 views
Can I disable the . in an <ol>?
I was delighted to learn that CSS lets me say list-style-type: cjk-ideographic and get my ordered lists numbered 一, 二, 三, 四. Unfortunately, it displays like "一." (2 characters: kanji/hanzi 1, then ...
8
votes
1answer
1k views
Inheritance of list-style-type property in Firefox (bug in Firebug?)
Let's have a look at some comments 1) on a page generated by Wordpress (it's not a site I maintain, I'm just wondering what's going on here). As these pages might disappear in the near future, I've ...
2
votes
4answers
971 views
Use CSS to alternate ul bullet point styles
I would like to alternate list-style-type properties for ul lists, so that the outer is a disc, then one inner ul list is a circle, than one more inner is a disc, and so on.
Essentially, what I want ...
1
vote
3answers
96 views
increase size of list-style-bullet type
Is there a way to increase the size of just the bullet list-style-type using CSS? I don't want to increase the size of the bullet text, just the bullet type. I can't use images or javascript either. ...
1
vote
2answers
126 views
Why does Firefox 4 transform every list-item bullet into '0.'
So the thing is that in Firefox 4 the list-style bullets transform 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 ...
0
votes
1answer
37 views
Is there any difference between “lower-latin” and “lower-alpha” values of “list-style-type” CSS property?
Both list-style-type: lower-latin and list-style-type: lower-alpha results in list like this:
a. item1
b. item2
c. item3
...
Is there any difference between these two values, or they are exactly ...
0
votes
2answers
2k views
List item bullets disappearing in IE6 and IE7
I have created a list of items using <ul> and <li>. It's works fine in Firefox but in Internet Explorer 6 and 7 I cannot see the list bullet.
Here is what I've done:
I have a global ul , ...
0
votes
4answers
1k views
Why bullet not shown in IE6
It shows in firefox,but no in IE(in fact mine is IE6)
<style type="text/css">
li { list-style-type:disc; }
</style>
<div style="margin: 2px auto 15px; padding: 5px 0px; width: 480px; ...