html - Bullets center with unordered list -
does know css makes bullet point sit @ top of multi-line bulleted list? reason template using bullet point centers left instead of sitting next first word if have more 1 line of text.
set list style position inside list item, see this demo fiddle.
css:
ul { list-style-position: inside; }
Comments
Post a Comment