JSFiddle - React, Tailwind, and code Playground

css 设置半透明边框

by gothic

HTML

<div>hello</div>

CSS

div {
    
    border: 3px solid hsla(0,0%,100%,.5);;
    background: red;
    background-clip:padding-box;
}