If i have a ul
, how do i set a border-bottom on all the li
items except the last one? I\'m also trying to make the width of the border
180
You can also use in-line CSS to correct this problem.
- Careers
This will remove the border from the "Careers" link. Note that it will only work if you put that code in the tag since that is what the border is being applied to, not the
.
The downside of this is that if you add something to the list, then the second-to-last list item will have no bottom border, and the last will.
Not the best solution, but an alternative one that accomplishes the same thing. Cheers!