gpt4 book ai didi

CSS 自定义形状

转载 作者:行者123 更新时间:2023-11-28 09:27:29 24 4
gpt4 key购买 nike

我怎样才能做出这样的东西:

enter image description here

现在我有:jsfiddle.net/xmqfe3h0/9

#test {
width: 315px;
height: 90%;
position: relative;
}

#test:before {
content: "";
position: absolute;
left: 70%;
width: 0;
height: 0;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-bottom: 50px solid black;
}

最佳答案

为您的 css3 形状添加倾斜:

  -webkit-transform: skew(40deg);
-moz-transform: skew(40deg);
-o-transform: skew(40deg);

JSFIDDLE DEMO

关于CSS 自定义形状,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25837256/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com