Backgrounds
Colors and Images
Background Colors
<!-- syntax -->
background-color: white;<!-- complete code -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Colrs and imagest</title>
<style>
#wrapper {
padding: 40px;
background-color: red;
height: 200px;
width: 300px
}
#color {
padding: 20px;
background-color: white;
}
</style>
</head>
<body>
<div id="wrapper">
<div id="color">Background color</div>
</div>
</body>
</html>End Result

Background Images

Last updated
Was this helpful?