请马上登录,朋友们都在花潮里等着你哦:)
您需要 登录 才可以下载或查看,没有账号?立即注册
x
本帖最后由 马黑黑 于 2025-8-6 12:31 编辑
<!-- clip-path 内切三角形代码 -->
<style>
/* 父元素 :参照的盒子 */
.pa {
margin: 20px auto;
width: 300px;
height: 300px;
border: 1px dashed silver;
position: relative;
}
/* 子元素 :切割的盒子 */
.ma {
position: absolute;
width: 100%;
height: 100%;
background: radial-gradient(red,tan, purple);
/* 剪裁路径走向 :先顺时针再逆时针 */
clip-path: polygon(
0 100%, /* 左下角 */
100% 100%, /* 右下角 */
0 0, /* 左上角 */
0 100%, /* 回到左下角 */
5% 95%, /* 左下角稍上 */
5% 12.5%, /* 左上角稍下 */
87.5% 95%, /* 右下角稍上 */
5% 95% /* 回到左下角稍上 */
);
}
</style>
<div class="pa">
<div class="ma"></div>
</div>
效果:
|