I am using css to set width of a div in HTML. I need to set a specific width for mozilla. I am able to find the margin tag specific for mozilla but not able to get the width tag. Below is the code:
     .box2 {
        display: inline-block;
        width: calc( 100% - 211px);
        margin-left: 208px;
        -webkit-logical-width: calc(100% - 117px);
        -webkit-margin-start: 115px;
        **MOZILLA SPECIFIC WIDTH: calc(100% - 117px);**
        -moz-margin-start: 115px;
        border: 1px solid black;
        height: auto;
        min-height: 33px;
    }
 
    