I am working with a component that I have inherited, including its CSS style, and I need to modify one of its properties.
Current CSS:
.captcha-main-image {
width: 100%;
height: auto;
}
<img class ="captcha-main-image" id="captchaImage" src="">
I want to change the width value.
This element is generated by another source and I cannot request the developer to make changes.
Is there any way I can achieve this using !important
?