Force list bullets inside the container
Question:
How to force list bullets inside the container? Answer:
ul {
list-style-position: inside;
}
Description:
Sometimes it can be quite confusing that the bullets before the list items are placed outside the container by default. The easiest solution to this is to set the list-style-position
CSS property to inside
.
The disadvantage of this solution is that if the text consists of multiple lines, the additional lines will be aligned to the bullet and not to the text.
Reference:
The list-style-position reference
Share "How to force list bullets inside the container?"
Related snippets:
Tags:
list, bullets, dots, inside, element, container, force inside, stay inside, css, ul Technical term:
Force list bullets inside the container