<!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;
}
.check
{
width: 22px;
height: 22px;
border-radius: 100%;
position: relative;
border: 1px solid green;
display: flex;
align-items: center;
justify-content: center;
}
.check::after
{
margin-top: -2px;
width: 6px;
height: 12px;
border-style: solid;
border-color: green;
border-width: 0 2px 2px 0;
-webkit-transform: rotateZ(45deg);
content: " ";
}
</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="check"></div>
</div>
</body>
</html>
CSS3实现打钩icon
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- CSS3可以用来实现很多很棒的UI效果,包括样式上的提升以及动画效果方面的改善。有很多文章讲述了如何用纯CSS画出...
- 微信等大部分app的tabBar上面的小图标都是点中的以深色显示,未点中的以浅色显示,这次结合react-nati...