A height of an element is overriden in the html 'style' attribute by ext framework:
<div class="class1" style="height: 900px;">
How do I set the height to 100% from css file? The following won't work since this rule is overriden by the html style attribute.
.class1 {
height: 100%;
}
Is it possible to disable override for this rule?