CSS in child theme to replace !important in parent theme

You can overwrite an !important option with another !important but with a deeper selector. Example: the next snippet

.container {
    width: 800px !important;
}

should be overwritten by

html .container {
    width: 800px !important;
}

Thanks!