欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

CSS 三角制作

程序员文章站 2022-05-26 22:25:15
...

如图
CSS 三角制作CSS 三角制作
结构

<div class="box1"></div>
<div class="box2"></div>
<div class="jd">
    <span></span>
</div>

css

<style>
    .box1 {
        width: 0;
        height: 0;
        /* border: 10px solid pink; */
        border-top: 10px solid pink;
        border-right: 10px solid red;
        border-bottom: 10px solid blue;
        border-left: 10px solid green;
    }
    .box2 {
        width: 0;
        height: 0;
        border: 10px solid transparent;
        border-left-color: pink;
		border-top-color: pink;
		border-right-color: pink;
		/* border-bottom-color: pink; */
        margin: 100px auto;
    }
    .jd {
        position: relative;
        width: 120px;
        height: 249px;
        background-color: pink;
    }
    .jd span {
        position: absolute;
        right: 15px;
        top: -10px;
        width: 0;
        height: 0;
        /* 为了照顾兼容性 */
        line-height: 0;  
        font-size: 0;
        border: 5px solid transparent;
        border-bottom-color: pink;
    }
</style>
相关标签: 笔记