rgba is the transpancy layer
1 2 3 4 5 6 7 |
#div { background: rgb(54, 25, 25); /* Fall-back for browsers that don't support rgba */ background: rgba(54, 25, 25, .5); } |
The gradient shown is here
1 2 3 4 |
background: -moz-linear-gradient(to bottom, #FFFFFF, #0099ff); background: linear-gradient(to bottom, #FFFFFF, #0099ff); |