Border color order

ptran1977

New Member
I have a table with every border set to 1px width solid.I want the top, left and bottom border to be black, and the right border to be white.So, i used this css code\[code\]border-right-color: white; border-left-color: black; border-top-color: black; border-bottom-color: black; border: solid 1px;\[/code\]The problem comes in IE9, where the top right corner pixel will be white, but the bottom right corner will be black.I suspect the problem comes form the way IE9 reorganize the style, because when i look at the css of my table in the developper tools console, it is ordered like this :\[code\]border-top-color: black;border-right-color: white; border-bottom-color: black; border-left-color: black; border-top-width: 1px;border-right-width: 1px;border-bottom-width: 1px;border-left-width: 1px;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid;\[/code\]This let me think that, maybe, the order used to defined colors makes it so the top border is colored black, then the right border is colored white (overwritting the top right corner), then the bottom border is colored black (overwritting the bottom right corner) and finnaly the left border is colored left.The thing is that, on a white background, the top and bottom borders do not appear to be the same length (by one pixel). It may not be much, but I need those two borders to fit with other lines on my page.So, how could i fix this? Is it really about the order the borders are colored, and if it is, how could I change that?
 
Back
Top