The !important statement must be placed at the end of the line, immediately before the semicolon,
otherwise it will not be taken into account by the browser.
.mybox {
width: !important 100px;
border: 1px solid !important black;
}
.mybox {
width: 100px !important;
border: 1px solid black !important;
}