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

css画小三角

时间:2016-09-23 13:00:14      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:

要点:

  • div的宽度设为0
  • border-color 的transparent属性
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8" />
    <title>Document</title>
    <style>
        .tri{
            margin: 60px;
            border: 10px solid ; 
            /*width: 0;  要有,不设置宽度的话,默认div的100%宽度,三角会跑到最右边*/
            /*border-color: red transparent transparent transparent;*/ 
            border-color:  transparent red transparent transparent;
            /*border-color:  transparent transparent red transparent;*/
            /*border-color:  transparent transparent transparent red;*/
            /*outline: 1px solid green;*/
        }
    </style>
</head>
<body>
    <div class="tri">
        
    </div>
</body>
</html>

 

css画小三角

标签:

原文地址:http://www.cnblogs.com/nostic/p/5899373.html

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