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

css3 伪类实现右箭头→

时间:2019-12-10 16:55:45      阅读:342      评论:0      收藏:0      [点我收藏+]

标签:nbsp   type   右箭头   oct   width   rar   char   document   pre   

css3 实现右箭头→

技术图片

<!DOCTYPE html>
 <html lang="en">
 <head>
     <meta charset="UTF-8">
     <title>Document</title>
 </head>
 <style>
.divtest{
    position: absolute;
    top: 100px;
    left: 100px;
    height: 3px;
    width: 10px;
    padding-left: 30px;
    background: red;
    line-height: 40px;
}
.divtest:before{
   content: ‘‘;
    position: absolute;
    top: -3px;
    right: -1px;
    width: 7px;
    height: 7px;
    border-top: 2px solid red;
    border-right: 2px solid red;
    transform: rotate(45deg);
}

</style>
 <body>
     <div class="divtest">
<!-- 这是一个箭头 -->
</div>
 </body>
 </html>

 

css3 伪类实现右箭头→

标签:nbsp   type   右箭头   oct   width   rar   char   document   pre   

原文地址:https://www.cnblogs.com/Ananiah/p/12017477.html

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