CSS 小三角

 

场景应用:下拉菜单小三角 

 IE 8+

效果图:

 

.box:before 相当于在  box 容器里的元素前面插入一个块 

     注意:content  属性一定不能少

 

<style type="text/css">
    .box{
        width: 300px;
        height: 300px;
        margin: 0 auto;
        padding: 20px;
    }
    .box:before{
        width: 0;
        height: 0;
        display: inline-block;
        border:5px solid transparent;
        border-top: 0;
        border-bottom-color: #CCC;
        content: " ";
        margin: 0 auto;
    }
    .cont{
        border: 1px solid #cccccc;
        width:100%;
        height: 200px;
    }
</style>

<div class="box">
    <div class="cont"></div>
</div>

 

posted @ 2017-11-15 23:21  linyongqin  阅读(123)  评论(0编辑  收藏  举报