css三角形的IE兼容写法

时间:2022-03-03 20:37:26

<style>

span{
        border-style: dashed dashed solid dashed;//上 右 下 左 想哪边为三角形 就把哪边写成solid
        border-color: transparent;
        border-top-color: green;
        border-width: 5px;
        width: 0;height: 0;
        display: inline-block;
        line-height: 0;
        }

</style>

<body>

<h3><span></span>h3标签上实现下三角且不影响布局</h3>

</body