Maybe this is a stupid question, but is using li better than using div’s possibly for page performance or resources?
Share
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.
Why would performance matter more than anything? Use
<li>only when you want to mark up a list, use<div>for sections/blocks of information.Some browsers tend to render
<li>as bulleted list items; if you really want to talk about performance, chances are it’ll be a browser performance hit to strip the list styles from those elements using CSS anyway.