I have a component which I'm inherits (including its css style) and I would like to change one of its attributes
This is the current CSS:
.captcha-main-image {
width: 100%;
height: auto;
}
<img class ="captcha-main-image" id="captchaImage" src="">
I would like to change its width value.
This element is being generated by a different source and I can't ask the developer to change its value.
Any chance I can do that by using !important somehow?
!importanttags.