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

纯css 画箭头

时间:2015-11-01 22:26:20      阅读:560      评论:0      收藏:0      [点我收藏+]

标签:

原理:

 把容器的边框设置大一点,容器本身的长宽为0,只设置一边的颜色让其自然形成 箭头

参考文章

http://yuiblog.com/blog/2010/11/22/css-quick-tip-css-arrows-and-shapes-without-markup/

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title></title>
    <style type="text/css">

        * {
            padding: 0;
            margin: 0;
        }

        #demo {
            background-color: #333;
            height: 100px;
            position: relative;
            width: 100px;

        }

        #demo:after {
            content: ‘ ‘;
            height: 0;
            position: absolute;
            width: 0;
            border: 10px solid  transparent;
            border-top-color: #333;
            top: 100%;
            left: 50%;
            margin-left: -15px;

        }

    </style>

</head>
<body>
<div id="demo"></div>
</body>
</html>

技术分享

纯css 画箭头

标签:

原文地址:http://www.cnblogs.com/wind90/p/4928650.html

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