!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>
1 Like

This topic was automatically closed after 60 days. New replies are no longer allowed.