码迷,mamicode.com
首页 > 其他好文 > 详细

各种三角形

时间:2016-05-06 10:41:10      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:

上三角: 技术分享

.up {
        width: 0;height: 0;
        border-left: 50px solid transparent;
        border-right: 50px solid transparent;
        border-bottom: 100px solid #000;
    }
<div class="up"></div>

下三角:技术分享

.down {
        width: 0;height: 0;
        border-left: 50px solid transparent;
        border-right: 50px solid transparent;
        border-top: 100px solid #000;
    }
<div class="down"></div>

左三角:技术分享  

.left {
        width: 0;height: 0;
        border-top: 50px solid transparent;
        border-right: 100px solid #000;
        border-bottom: 50px solid transparent;
    }
<div class="left"></div>

右三角:技术分享  

 .right {
        width: 0;height: 0;
        border-top: 50px solid transparent;
        border-left: 100px solid #000;
        border-bottom: 50px solid transparent;
    }
<div class="right"></div>

左上:技术分享  

.topLeft {
        width: 0;height: 0;
        border-top: 100px solid #000;
        border-right: 100px solid transparent;
    }
<div class="topLeft"></div>

右上:技术分享  

.topRight {
        width: 0;height: 0;
        border-top: 100px solid #000;
        border-left: 100px solid transparent;
    }
<div class="topRight"></div>

左下:技术分享  

.bottomLeft {
        width: 0;height: 0;
        border-bottom: 100px solid #000;
        border-right: 100px solid transparent;
    }
<div class="bottomLeft"></div>

 右下:技术分享 

.bottomRight {
        width: 0;height: 0;
        border-bottom: 100px solid #000;
        border-left: 100px solid transparent;
    }

<div class="bottomRight"></div>

 

各种三角形

标签:

原文地址:http://www.cnblogs.com/AliceLiu/p/5464665.html

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