Disabling css override from html style attribute -
a height of element overriden in html 'style' attribute ext framework:
<div class="class1" style="height: 900px;">
how set height 100% css file? following won't work since rule overriden html style attribute.
.class1 { height: 100%; }
is possible disable override rule?
yes possible
use
.class1 { height: 100% !important; }
Comments
Post a Comment