List Item Border Width

liunx

Guest
Hi, I'm trying to get the border of a list item to go the complete width of the list. When I set the border-bottom of the li's it only goes from the starting point of the li to the end. I want it to start from the left edge and to all the way to the end, right edge. Any help or ideas would be great. ThanksTry doing this:

li{margin-left:0;padding-left:30px;border-bottom:1px solid;}

The reason the bottom border doesn't extend all the way to the left is because li's come with a built in left margin. Since the margin is outside the border, if you replace the left margin with some left padding the bottom border will extend all the way to the left.
 
Back
Top