semi transparent background css code example
Example 1: background color semi transparent
.transparent {
background-color: rgba(255, 255, 255, 0.5);
}
.transparent {
opacity: 0.5;
}
Example 2: background image opacity css
div {
background-color : rgba(120, 120, 120, 0.5)
}
div {
background-color : blue
opacity : 50%
}
Example 3: css opacity
.div{
opacity: 0.8;
}
Example 4: button transparent using css
<button type="submit" name="submitDetails">Submit Data</button>
<style>
button {
background-color: rgba(255,255,255,0);
}
</style>
Example 5: set opacity of background image
The following example sets the opacity for the background color and not the text: 100% opacity. 60% opacity. 30% opacity. 10% opacity. You learned from our ...