html - How to adjust transparency of Border? -
this question has answer here:
- how make transparent border using css? 4 answers
i trying search css style adjust transparency of border doesn't mean can't see border want adjust transparency.
there case in stackoverflow eliminating border , want reduce transparency different case
best way make border transparent using rgba
div { border: 1px solid rgba(255, 0, 0, .5); -webkit-background-clip: padding-box; /* safari */ background-clip: padding-box; /* ie9+, firefox 4+, opera, chrome */ }
Comments
Post a Comment