I have a component in html page as below
<div style='right:2px;'>
</div>
Is it possible to override the right property in internal css and make it not to do work.I mean the right property should not work.Can anyone help?
I have a component in html page as below
<div style='right:2px;'>
</div>
Is it possible to override the right property in internal css and make it not to do work.I mean the right property should not work.Can anyone help?
Use !important to override it. For more details check these usages
div {
right: 100px !important;
}
<div style='right:2px; position:absolute;'>
hai
</div>