CSS绘制各种三角形

思路

从盒模型来看,如果content宽高为0, border有宽度,那么上下左右的border就会填充满整个盒子,于是四个方向的border都是三在这里插入图片描述 角形形状,这样想要哪边就显示哪边

效果

代码

html

html 复制代码
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="index.css">
    <script src="/index.js"></script>
    <title>CSS三角形</title>
</head>
<body>
    <div class="CENTER flex_box">
        <div class="tri no_cotent tri_bottom"></div>
        <div class="tri no_cotent tri_bottom_border"></div>
        <div class="tri no_cotent around"></div>
        <div class="tri content around"></div>
    </div>
</body>
</html>

CSS

css 复制代码
.CENTER{
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    transform: translate(-50%, -50%);
}
.flex_box{
    display: flex;
    width: 500px;
    align-items: center;
    justify-content: space-between;

}
.tri{
    margin: 0;
    padding: 0;
    border-width: 50px;
    border-color: transparent;
    border-style: solid;
}
.content{
    width: 50px;
    height: 50px;
}
/* 如果要绘制三角形, 那么content部分需要设置宽高为0, 只用border填充box */
.no_cotent{
    width: 0;
    height: 0;
}
/* 下三角形 */
.tri_bottom{
    border-bottom-color: rgb(66, 210, 218);
}
/* 带边框下三角形, 思路是两个三角形重叠, 使用伪元素实现边框 */
.tri_bottom_border{
    border-bottom-color: rgb(255, 255, 255);
    border-bottom-style: dashed;
}
.tri_bottom_border::after{
    position: relative;
    content: '';
    padding: 0;
    top: -28px;
    left: -60.5px;
    z-index: -1;
    border-style: solid;
    border-bottom-color: rgb(227, 193, 255) !important;
    border-width: 60px;
    border-color: transparent;
}
/* 三角形四周环绕 */
.around{
    border-left-color: red;
    border-right-color: blue;
    border-top-color: aqua;
    border-bottom-color: orange;
}
相关推荐
合作小小程序员小小店10 分钟前
web网页开发,在线物流管理系统,基于Idea,html,css,jQuery,jsp,java,SSM,mysql
java·前端·后端·spring·intellij-idea·web
GISer_Jing1 小时前
OSG底层从Texture读取Image实现:readImageFromCurrentTexture
前端·c++·3d
Charles_go1 小时前
C#8、有哪些访问修饰符
java·前端·c#
慧一居士1 小时前
Vue中 class 和 style 属性的区别对比
前端·vue.js
oil欧哟2 小时前
文心 5.0 来了,百度大模型的破局之战
前端·人工智能·百度·prompt
东华帝君2 小时前
react 切片 和 优先级调度
前端
洞窝技术3 小时前
Next.js 不只是前端框架!我们用它搭了个发布中枢,让跨团队协作效率翻倍
前端·next.js
带着梦想扬帆启航3 小时前
UniApp 多个异步开关控制教程
前端·javascript·uni-app
小高0073 小时前
JavaScript 内存管理是如何工作的?
前端·javascript
是大林的林吖3 小时前
解决 elementui el-cascader组件懒加载时存在选中状态丢失的问题?
前端·javascript·elementui