Latest Lists

In HTML, how would you get an unordered list to go all the way to the left? Like justifying it left.?

Here is how that list would display: * list item 1 * list item 2 * list item 3 All i can do is make it align like this... I want the bullet to be aligned with the "H" on "here". Here is how that list would display: * list item 1 * list item 2 * list item 3 * represents a bullet All i can do is make it align like this... I want the bullet to be aligned with the "H" on "here". I am not allowed to use an CSS files

Public Comments

  1. <p align="left"> * list item 1<br> * list item 2<br> * list item 3<br> </p>
  2. Try: ul { padding-left: 1em; } in your CSS file. If you don't have a separate file, put it within a <script> tag within the <head>.
Powered by Yahoo! Answers