Run

Tutorial With Example

Run your live code

 
18
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
           <title>CSS background-color</title>
5
<style>
6
div {
7
  background: rgba(0, 128, 0, 0.9) /* Green background with 30% opacity */
8
}
9
  </style>
10
</head>
11
<body>
12
           <div style="height:100px; padding:10px">
13
             <h1>Welcome to CSS Tutorial</h1>
14
             <p>I am a CSS Developer!</p>
15
          </div>
16
           
17
</body>
18
</html>