Is there a way to control opacity/transparency of the border color using CSS?
views:
45answers:
2
+3
A:
You may try rgba color
border-color: rgb(255,255,255); /* fallback for IE */
border-color: rgba(255,255,255, 0.4); /* RGBA for the ones supporting it */
The last one is the (alpha) opacity. But it's not supported in IE, that's why you need a fallback version
galambalazs
2010-07-06 12:20:29
A:
Try border: 5px solid rgba(255,0,0,0.5);
-- the alpha channel is the last parameter.
NOTE: Not all browsers (read: Internet Explorer) support this.
reece
2010-07-06 12:22:09