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

css3实现虚拟三角形

时间:2016-10-08 16:21:35      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        /*上箭头*/
        .triangle-up {
            width:0;
            height:0;
            border:10px solid transparent;
            border-bottom-color:yellow;
        }
        /*下箭头*/
        .triangle-down {
            width:0;
            height:0;
            /*transform: translate(-50%,-50%);*/
            border:10px solid transparent;
            border-top-color:yellow;
        }
        /*左箭头*/
        .triangle-left {
            width:0;
            height:0;
            border:10px solid transparent;
            border-right-color:yellow;
        }
        /*右箭头*/
        .triangle-right {
            width:0;
            height:0;
            /*transform: translate(-50%,0);*/
            border:10px solid transparent;
            border-left-color:yellow;
        }
    </style>
</head>
<body>
    <div class="triangle-right"></div>
</body>
</html>

 

css3实现虚拟三角形

标签:

原文地址:http://www.cnblogs.com/joesbell/p/5938730.html

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