How to remove the bottom border of a box with CSS

Gandalf picture Gandalf · Nov 6, 2010 · Viewed 108.9k times · Source

alt text

I have a rectangular div, like the one above. I want to remove the bottom border (from C to D) in my div. How can I do this?.

Edit: Here is my CSS:

Answer

DaiYoukai picture DaiYoukai · Nov 6, 2010

Just add in: border-bottom: none;

#index-03 {
    position:absolute;
    border: .1px solid #900;
    border-bottom: none;
    left:0px;
    top:102px;
    width:900px;
    height:27px;
}