Hallo zusammen
Ich finde auf W3Schools keine Antwort.
Wann verwende ich
1 | .body {} |
und wann verwende ich
1 | body {} |
ohne Punkt?
1 2 3 4 5 6 7 8 | .hero-image { background-image: url("photographer.jpg"); /* The image used */ background-color: #cccccc; /* Used if the image is unavailable */ height: 500px; /* You must set a specified height */ background-position: center; /* Center the image */ background-repeat: no-repeat; /* Do not repeat the image */ background-size: cover; /* Resize the background image to cover the entire container */ } |
oder
1 2 3 4 5 | body { background-image: url("img_tree.gif"), url("paper.gif"); background-repeat: no-repeat, repeat; background-color: #cccccc; } |