html - CSS Box Model Chrome border color -
i trying reproduce happening in fiddle not able that.
i have code similar this
html{ font-size: 2em; background-color: #ff0000; } table td{ background: #d0d0d0; border: 10px solid white; } <div> <table> <tr> <td> <table> <tbody> <tr class="row1_fixed"> <td>row header 1</td> </tr> <tr class="row2_fixed"> <td>row header 2</td> </tr> <tr class="row3_fixed"> <td>row header 3</td> </tr> </tbody> </table> </td> <td> <div> <table> <tbody> <tr> <td> column data 1 </td> <td> column data 1 </td> </tr> <tr> <td> column data 2 </td> <td> column data 2 </td> </tr> <tr> <td> column data 3 </td> <td> column data 3 </td> </tr> </tbody> </table> </div> </td> </tr> </table> </div>
http://jsfiddle.net/agusgambina/p4mqy/12/
i want cells spaced white border.
in firefox works well
but in chrome appears second border background color
thanks
im not sure if looking for, here modified fiddle
it has behavior in chrome , firefox
i changed .compare table
, .column-item
hope helps you.
Comments
Post a Comment