Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Bullets center with unordered list

Tags:

Does anyone know the CSS that makes the bullet point sit at the top of a multi-line bulleted list? For some reason with the template that I am using the bullet point centers to the left instead of simply sitting next to the first word if I have more than one line of text.

like image 777
Logan Avatar asked Jul 01 '11 15:07

Logan


1 Answers

Set the list style position to inside the list item, see this demo fiddle.

CSS:

ul {     list-style-position: inside; } 
like image 158
NGLN Avatar answered Oct 18 '22 17:10

NGLN