CSS COURSE • LESSON
🖼️ CSS Backgrounds
Master CSS and create modern responsive websites with EDUHUB CODE HUB.
CSS Backgrounds
CSS background properties are used to add background effects to elements.
Background Color
body {
background-color:black;
}
Background Image
body {
background-image:url("image.jpg");
}
Background Repeat
body {
background-repeat:no-repeat;
}
Background Size
body {
background-size:cover;
}