drake035
drake035

Reputation: 2877

HTML lists : "embedding" the bullet in the LI blocks

Can UL/OL list bullets be embedded in the text of the LI so that instead of having two columns (left column with bullets and right column with text) there would be one single column with the text of the first line of each LI starting a few characters after the bullet ?

Upvotes: 1

Views: 141

Answers (1)

Use the following css property for your ul element:

list-style-position: inside;

that should do what you want.

Upvotes: 4

Related Questions