I need to put a div
with the property position
= absolute
. However,% of parent% has div
and padding
of width: 100%
child does not respect this div
.
Would the only output would be to set padding
to width
?
I'veputanexamplehere:
.master {
background-color: red;
width: 200px;
height: 300px;
padding: 10px;
position: relative;
}
.child {
width: 100%;
height: 30px;
background-color: yellow;
position: absolute;
}
<div class="master">
<div class="child">
</div>
</div>