The domain latestlists.com is for sale. Click here for more details. Latest Lists - How do you center lists in HTML?

Latest Lists

How do you center lists in HTML?

title says it all. I want to be able to put a list on my page, but i want it in the center so it flows with everything else I've got on there. Thanks

Public Comments

  1. <center> put that in top first there are some tutorials in that site
  2. use CSS
  3. <Center>title says it all. I want to be able to put a list on my page, but i wan it in the center so it</Center>
  4. You need to use margin: 0 auto; The <center> element has been deprecated, and should not be used. http://brugbart.com/Articles/How-to-Center-a-Website-_120.html - How to Center elements on a Website I.e. -----StartCode----- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <title>How to Center a Website</title> <style type="text/css"> body { text-align: center; /* IE6 Specific */ } ol { width: 150px; margin: 0 auto; text-align: left; /* IE6 Reset Alignment */ } </style> </head> <body> <h1>How to Center Elements on a Website</h1> <ol> <li>List Item Example</li> <li>List Item Example</li> </ol> </body> </html> -----CodeEnd-----
Powered by Yahoo! Answers