Search code examples
cssfirefoxborder

css issue on firefox, border not show correctly


i got an issue on firefox, while all IE, Safari and chrome are working.

<div class="forDiv">ddd</div>
<table class="forTable"> .... </table>


.forDiv {
width:100%;
border:3px solid #236FBD;
background-color: #236FBD;
}

.forTable{
width:100%;
border:3px solid #236FBD;
background-color: #236FBD;
}

in firefox, the div is a bit smaller. how can i fix it?


Solution

  • .forDiv {
    width:100%;
    border:3px solid #236FBD;
    background-color: #236FBD;
    -moz-box-sizing: border-box;
    }
    
    .forTable{
    width:100%;
    border:3px solid #236FBD;
    background-color: #236FBD;
    -moz-box-sizing: border-box;
    }