码迷,mamicode.com
首页 > Web开发 > 详细

CSS 实现叉号

时间:2020-03-19 21:38:35      阅读:1433      评论:0      收藏:0      [点我收藏+]

标签:20px   height   red   close   osi   content   idt   after   absolute   

<div class="close"></div>
.close {
    position: relative;
    width: 40px;
    height: 40px;
}

.close::before,
.close::after {
    position: absolute;
    content: ' ';
    background-color: red;
    left: 20px;
    width: 1px;
    height: 40px;
}

.close::before {
    transform: rotate(45deg);
}

.close::after {
    transform: rotate(-45deg);
}

CSS 实现叉号

标签:20px   height   red   close   osi   content   idt   after   absolute   

原文地址:https://www.cnblogs.com/xiaoyucoding/p/12527056.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!