Css Image With Transparent Background Code Example


Example 1: background image opacity css


/* Two ways to make images opaque */

div {
background-color : rgba(120, 120, 120, 0.5)
/* the 0.5 is the value of opacity on a scale of 0-1 */
}

/* OR */

div {
background-color : blue
opacity : 50%
}

Example 2: transparent background css for image


background-color: rgba(255, 0, 0, 0.5);

Example 3: png image background transparent css


body { 
background-color: transparent;
}

Example 4: css background image opacity


/*
You have to fake it, as there is no such property
*/


div {
width: 200px; /* Image Width */
height: 200px; /* Image Height */
display: block;
position: relative;
}

div::after {
content: "";
background: url(image.jpg);
opacity: 0.5;
top: 0;
left: 0;
bottom: 0;
right: 0;
position: absolute;
z-index: -1;
}

Example 5: transparent background css


div {
width: 200px;
height: 200px;
display: block;
position: relative;
}

div::after {
content: "";
background: url(image.jpg);
opacity: 0.5;
top: 0;
left: 0;
bottom: 0;
right: 0;
position: absolute;
z-index: -1;
}

Example 6: image opacity in html


img {
opacity: 0.5;
}

Comments

Popular posts from this blog

Converting A String To Int In Groovy

"Cannot Create Cache Directory /home//.composer/cache/repo/https---packagist.org/, Or Directory Is Not Writable. Proceeding Without Cache"

Android How Can I Convert A String To A Editable