CSS Backgrounds
CSS backgrounds can be styled with colors, images, or gradients.
Example:
body {
background-color: lightgray;
}
div {
background-image: url('image.jpg');
}
CSS backgrounds can be styled with colors, images, or gradients.
body {
background-color: lightgray;
}
div {
background-image: url('image.jpg');
}