/ 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
Expand |
Embed | Plain Text
#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; }
You need to login to post a comment.
