I have two div
s like below
<div class="parent">
<div class="child">
</div>
</div>
Now in the child
div, I see a style called height
with some pixels when I inspect it. I am surprised how its not applied to the parent div
.
I want to override the style to 100px
from its 30px
.
My application is an angular and css3 html5, web api mvc based app.
How to do it?
I tried this
div[style] {
height: 100px;
}