Is it possible to change the size of an element\'s bullet?
Take a look at the code below:
li {
list-sty
Another way of changing the size of the bullets would be:
::before
pseudo-element.Example:
ul {
list-style-type: none;
}
li::before {
display: inline-block;
vertical-align: middle;
width: 5px;
height: 5px;
background-color: #000000;
margin-right: 8px;
content: ' '
}
- first element
- second element
No markup changes needed