Search code examples
cssbackground-color

CSS Style coming for body element and not for header section when both configured


enter image description here

In this case body element is getting the color linen but h1 element is not getting lightblue. Can anyone please explain me this as I am new to CSS


Solution

  • Your semicolons are not ending the CSS statements. You need to make sure to run code through a linter for syntax errors before posting. Here's what it should look like:

    body {
        background-color: linen;
    }
    
    h1 {
        background-color: lightblue;
    }