views:

45

answers:

2

Is there a way to control opacity/transparency of the border color using CSS?

+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
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