RGB and RGBA
-
In the CSS I am setting the RGBA value and I have read I should set at RGB value as a backup for browsers that do not support RGBA. However browsers that support RGBA are selecting to use the RGB value instead. How do I force a browser to use the RGBA value over and RGB value?
Here’s what I have:
#featured{ background:rgba(54,87,59,0.9); background:rgb(54,87,59); filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#2236573B, endColorstr=#2236573B); /* For IE 8*/ -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#2236573B, endColorstr=#2236573B)"; }
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘RGB and RGBA’ is closed to new replies.