border
border
HTML
<div class="example">
Hello world!
</div>
CSS
body {
background-color:black;
}
.example {
border: 1px solid rgba(255,255,255,0.24);
border-top-width: 1px;
border-right-width: 1px;
border-bottom-width: 1px;
border-left-width: 1px;
border-top-style: solid;
border-right-style: solid;
border-bottom-style: solid;
border-left-style: solid;
border-top-color: rgba(255, 255, 255, 0.24);
border-right-color: rgba(255, 255, 255, 0.24);
border-bottom-color: rgba(255, 255, 255, 0.24);
border-left-color: rgba(255, 255, 255, 0.24);
border-image-source: none;
border-image-slice: 100%;
border-image-width: 1;
border-image-outset: 0;
border-image-repeat: stretch;
}