Setting border of LI

liunx

Guest
Im trying to set the border of an li tag. If i do (border-bottom-width: 1px;) it gets all messed up like u can see here <!-- w --><a class="postlink" href="http://www.mystupidcrap.com/scott/new2.php">www.mystupidcrap.com/scott/new2.php</a><!-- w --> but it works if i just do all the sides(ex. border-width: 1px;). Why doesnt with work.... Do u get what im saying. Also on a kindof related topic is it bad to use unordered lists for presentation, because without tables i find it nearly impossible to set any kind of structure or anything, but i also thought that one of the key to standerds is to only use tags for there intended purpose?Try using the following. It seems to work fine for me. I could not determine, from the page you showed me, what the problem was, so I hope this is the solution.


#primarycontent li {
border-bottom: solid 1px #666;
}
 
Back
Top