I have created an unordered list. I feel the bullets in the unordered list are bothersome, so I want to remove them.
Is it possible to have a list without bullets?
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.
You can remove bullets by setting the
list-style-typetononeon the CSS for the parent element (typically a<ul>), for example:You might also want to add
padding: 0andmargin: 0to that if you want to remove indentation as well.See Listutorial for a great walkthrough of list formatting techniques.