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

纯css写三角形

时间:2015-06-05 17:04:41      阅读:88      评论:0      收藏:0      [点我收藏+]

标签:

<style>
    .triangle_border_up {
        width: 0;
        height: 0;
        border-width: 0 30px 30px 30px;
        border-style: solid;
        border-color: transparent transparent #333;
        /*透明 透明  灰*/
    }
    .triangle_border_left {
        width: 0;
        height: 0;
        border-width: 30px 30px 30px 0;
        border-style: solid;
        border-color: transparent #333 transparent transparent;
        /*透明 灰 透明 透明 */
        
        margin: 40px auto;
        position: relative;
    }
</style>

<div class="triangle_border_up"></div>
<div class="triangle_border_left"></div>

纯css写三角形

标签:

原文地址:http://www.cnblogs.com/zhouyx/p/4554837.html

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