I am new to coding. I'm working on a beginner's project where I am trying to replicate Google's Advanced Search page. I am making the header using display: grid; and want to apply background colors to individual rows.
#header{
display: grid;
grid-template-columns: 100px 1fr 50px;
grid-template-rows: 50px 200px;
grid-template-areas:
"google-logo . search"
"advanced-search . ."
}
In the above example, I want the row with google-logo . search to have a background color of gray. Any help would be appreciated, thank you!