And now I want to put in an image to span the entire header area. I can figure out how to put in an image in the HTML window, but it seems sorta wrong; like that it should be in the CSS window. Anyways how would I go about using an image to span the header area or just be a background for the main text about my tribute project. Here is my progression so far.
background-image — The purpose is self-explanatory, but it’s worth mentioning that when using this property, you should still use the background-color property because some older browsers don’t support background images.
background-size — Defines the size of the background. The size can be defined in regular CSS length units (px, %, em, etc.), or it can have the value contain or cover. contain stretches or shrinks the image so that the entire image displays in the container (which can result in the image not filling the entire container), and cover expands the image so that it fills the entire container (which can result in part of the image not being visible).
background-position — Determines the background’s position within the container. This property can take a variety of values, but the value center positions the background so that it’s in the center of the container, both vertically and horizantally. This guarentees that the center of the image, which is (hopefully) the most important part of the image will be visible even if the entire image doesn’t display.
background-repeat — By default, background images will repeat if they’re smaller than their container, but setting background-repeat to no-repeat prevents this behavior. background-repeat can also be set to repeat-x and repeat-y, which only allows it to repeat horizantally or vertically.
I hope that this answers your question. Tell me if you have any other questions or concerns!