tags:

views:

24

answers:

2

Not sure if I'm having a stupid day or not but wondering if there is a hack around this.

When I have a multi-line list item with no list style, I get this indent as if the bullet should be there.

Anyway arond this?

alt text

+1  A: 
li{
   padding: 0;
   margin: 0;
}
Lekensteyn
A: 

See my answer to this question.

The basic answer is: use a CSS reset to get rid of all the unexpected default styles from the browser.

Matt Ball