Notes on CSS to control bullet margin
margin-left pushes bullet to the right. Useful if CSS reset is used which seems to cancel out (override) default bullet margins.
.toplevelbullet li {
list-style-type: disc;
/* padding-left: 1rem; */
margin-left: 2rem;
margin-top: 0.5rem;
margin-bottom: 0.5rem;
}
Comments
Post a Comment