I have applied background-color: #C0C0C0;
to my span element .grey_bg
but the background is not changing color. Why is that?
.grey_bg {
width: 100%;
background-color: #C0C0C0;
}
<span class="grey_bg">
<h1>Hey</h1>
</span>
<span>
on MDN - Permitted content: Phrasing content, headings i.e.<h1>
cannot be included, because it is not phrasing content. – Lanky