When using css to style unordered lists I have genericly stated that all
ul li have list-style-type:none;
Then on one page I want to use a list with bullet points, for this i used:
ul .bullets {
list-style-type:circle;
}
But it doesnt seem to work, is this due to me having the class on ul
<ul type="circle">
Could someone please show me where I am going wrong, I'm having a dumb moment. Thank youfor what I know u should set the class not with "type" but like this
<ul class="circle"><ul class="bullets">You have to change the list-style of the UL or OL tags, no the LI tags.
ul li have list-style-type:none;
Then on one page I want to use a list with bullet points, for this i used:
ul .bullets {
list-style-type:circle;
}
But it doesnt seem to work, is this due to me having the class on ul
<ul type="circle">
Could someone please show me where I am going wrong, I'm having a dumb moment. Thank youfor what I know u should set the class not with "type" but like this
<ul class="circle"><ul class="bullets">You have to change the list-style of the UL or OL tags, no the LI tags.