<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="Cache-Control " content="no-cache,must-revalidate">
<meta name="description" content="">
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0,user-scalable=no">
<meta content="telephone=no" name="format-detection" />
<meta name="x5-orientation" content="portrait">
<title>关闭</title>
</head>
<style>
.app {
position: relative;
width: 500px;
height: 500px;
background: red;
}
.close {
width: 20px;
height: 20px;
/*方便相对于父元素进行定位*/
position: absolute;
top: 10px;
right: 10px;
border: 1px solid greenyellow;
border-radius: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.close::before,
.close::after{
content: "";
height: 16px;
width: 1.5px;
background: lightgreen;
}
.close::before{
transform: rotate(45deg); /*进行旋转*/
}
.close::after{
transform: rotate(-45deg);
}
</style>
<body>
<noscript>
<strong>We're sorry but photo-live doesn't work properly without JavaScript enabled. Please enable it to
continue.</strong>
</noscript>
<div class="app">
<div class="close"></div>
</div>
</body>
</html>
CSS3实现关闭icon
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- CSS3可以用来实现很多很棒的UI效果,包括样式上的提升以及动画效果方面的改善。有很多文章讲述了如何用纯CSS画出...
- 前言 关于Material Design相关的控件,前两篇文章已经介绍了一些常用的控件了,这篇文章主要介绍一下Dr...