Text in div has background color

49 Views Asked by At

If I put a text element in a div element, the text shows another background color than the div element. Bellow is a picture and the code

Thank you

.category {
        background-color: brown;
        width: 350px;
        height: 100px;
    }

    .category h2 {
        text-align: center;
    }
<div class="category">
   <h2>Rain</h2>
</div>

    
enter image description here

0

There are 0 best solutions below