Hi there! I've been working on the following code snippet:
.blah {
padding: 15px;
background:green;
}
.blah div{
background:red;
}
<div class='blah'>
<div>
foo
</div>
</div>
However, it seems that "foo" isn't inheriting the padding. Should I add padding: inherit
specifically for the inner div?