+ 1
What is the sequence of the bullets in nested unordered list in HTML?
10 Answers
+ 3
Maybe this code will answer your question:
https://code.sololearn.com/WCqmEhiubgPc/?ref=app
+ 3
that is the dafault but you can change the bullets if want using a css rule like this:
ul {
list-style-type: circle;
}
or you can put your own bullet like this:
ul{
list-style-image: url('mygif.gif');
}
+ 2
Ok. I'm going to modify the code.
+ 2
I modified it already.
+ 2
look the code again.
+ 1
about the sequence of bullets in nested unordered list
+ 1
ok
0
disc
circle
square
0
I talks about nested list not the simple list
0
when u want to show the list like
A
AA
AAA
which bullet is shown at different level?