形状カテゴリー
プリセット (38)
三角形
Triangle ・ 上向きの二等辺三角形。頂点位置を調整可能。
CSS(標準・互換)
-webkit-clip-path: polygon(50% 0%, 100% 100%, 0% 100%); clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
CSS(標準のみ)
clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
HTML使用例
<div class="shape"></div>
<style>
.shape {
width: 200px;
height: 200px;
background: linear-gradient(135deg, #ec4899, #8b5cf6);
-webkit-clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}
</style>

