If I have a body tag and I want to change the background color to grey from the top of the page down say 300px, how would I do this if I have content on the page over the body?
I can set the entire background color of the body tag to grey, is it possible to just define a range?
body {
background-color: #16749F; // from 0px to 300px
}