/ Published in: CSS
RGBa is a way to declare a color in CSS that includes alpha transparency support.
Filter for IE could be add per conditional comment
Filter for IE could be add per conditional comment
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
#element { background: rgb(65, 200, 160); /* Fallback */ background: rgba(65, 200, 160, 0.5); } .ie6-8 #element{ background:transparent; filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#40c8a050,endColorstr=#40c8a050); zoom: 1; }