html - Css list style. How to align css list styles? -

we want proper alignment. how proceed css?? proper left alignment text, multiple line text.
the css property looking called list-style-position, although set outside, value want, default.
ul { list-style-position: outside; } of course, if add image front of text, that's not gonna help. instead, set this:
ul { list-style-position: outside; list-style-image: url(/path/to/image.png); }
Comments
Post a Comment