!important in css

Hi folks…how do I get !important into a css selector?

Thanks.

You’ll need to do it with custom code, example:

<style>
.my-class-name {
    background: red !important;
}
</style>