CSS-0.5px 边框

<div class="border">hello world</div>
 .border {
            width: 150px;
            height: 40px;
            border-radius: 4px;
            text-align: center;
            line-height: 40px;
            color: deepskyblue;
            position: relative;
        }

        .border::after {
            content: '';
            display: block;
            width: 200%;
            height: 200%;
            border: 1px solid deepskyblue;
            transform: scale(0.5);
            position: absolute;
            left: 0;
            top: 0;
            transform-origin: 0 0;
        }

效果:

 

posted @ 2020-07-14 14:21  面包_girl  阅读(135)  评论(0编辑  收藏  举报
/* 鼠标点击文字特效 */