Change bullet size in HTML
Question:
How to change bullet size in HTML? Answer:
li::marker {
font-size: 1.5rem;
}
Description:
Sometimes it may be necessary to increase or decrease the size of the bullets before the HTML list elements, regardless of the size of the list text. This can be easily done using the ::marker
pseudo-element, which can be used to change the size of the bullet using the font-size
property.
Reference:
The ::marker reference
Share "How to change bullet size in HTML?"
Related snippets:
Tags:
change, bullet, size, increase, reduce, make smaller, make bigger, dot, list, html, css Technical term:
Change bullet size in HTML