I have a list and I would like the text to be indenting if it goes over one line.
At the moment it goes:
> hello there
my name it
> item 2
> item 3
I would like it to be:
> hello there
__my name is
> item 2
> item 3
This is the CSS:
Code:
ul.squares {
list-style-type: square;
list-style-image: none;
list-style-position: inside;
}
Any ideas?
|