+ 6
Can we change the color of bullets in html?
7 Answers
+ 18
Yes We Can.
By Adding Style Color Attribute To <ul>!. e. g. <ul Style="color:blue;">
<li>...</li>
</ul>
Hope You Got It!
Good Question!
Good Luck!!!
+ 11
Do you think like this code? text is blue, bullets are red
https://code.sololearn.com/WNTphvD9JDBw/?ref=app
+ 5
Yes
The following step ā”ā”ā”ā”
Step : #1
<ul>
<li style = "color: green; ">..</li>
</ul>
Step : #2
<!doctype html>
<html>
<style type="text/css">
li{
color : green;
}
</style>
<head>
</head>
<body>
<ul>
<li>...</li>
</ul>
</body>
</html>
+ 5
Use CSS
li {
list-style-type:circle ;
list-style:block ;
color:red;
}
+ 4
Real Watson
Use CSS
li {
list-style-type:circle ;
list-style:block ;
color:green;
}
+ 1
green