The Wolf
The Wolf

Reputation: 195

How do you position list item bullets inside a list?

You will see that the numbers/bullets generated by my HTML make the elements at the left look ugly

https://i.sstatic.net/nAb8C.jpg

I am trying to use margin and padding at my CSS neither works. Help.

I want the numbers to show at least 5px from the left of the image.

Upvotes: 2

Views: 100

Answers (2)

Timmetje
Timmetje

Reputation: 7694

This is the reason why default browser stylesheets have a padding for lists.

I think you removed the padding of the OL tag. Or two margins are adjoining (from the image and ol).

Do you have the code?

Upvotes: 0

user527892
user527892

Reputation:

Add list-style-position: inside to your ol tag in your CSS stylesheet

Upvotes: 3

Related Questions