。
尝试创建一个标题标签的背景,如上图所示。有人知道怎么做吗?
尝试使用剪辑路径和svg路径,但没有得到它的权利。如果有人能解释一下就好了。谢谢你,谢谢
/* First try*/
.splash {
background-color: #f5e2d1;
clip-path: ellipse(75% 23% at 53% 30%);
padding: 10px;
}
/* Second try, didn't quite understand this one and tried playing with the numbers but didn't get the shape i want */
.splash {
background-color: #f5e2d1;
clip-path: path('M50 0 C20 20, 20 70, 50 50, 80 70, 80 20, 50 0 Z');
padding: 10px;
}
<div class="splash">
<h3 lass="clipped">Education</h3>
</div>
2条答案
按热度按时间nmpmafwu1#
这能满足你的需要吗
你可以玩这个
来塑造你更喜欢的形状
jhkqcmku2#
@CheepSheep,看看你尝试了什么,这里有更多的东西给你...