I wantto reduce the gap between a bullet and its text in html ..
FOr instance I have
- This is the text
How is it possible to increase or decrease the gap between the bullet and The text using css?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The only way I’ve been able to achieve this [decreasing the native browser rendered spacing of the li] is by adding additional markup to your
liand setting a negative margin.As an example:
Markup:
CSS
This could add quite a bit of extra unnecessary markup for such a small requirement. You’d be better of using a background image on your
lielement which offers better position control without all the extra markup.