Consider the following HTML and CSS codes
I can't figure out why the button text is not red, and I also don't know how to let the parent override the button's color:
.red {
color: red !important;
}
<div class="red">
<button>Should be red</button>
</div>