3
侧面倾斜的形状(响应)
我正在尝试创建如下图所示的形状,仅在一侧(例如,底侧)上有一个倾斜的边缘,而其他边缘保持笔直。 我尝试使用border方法(下面给出了代码),但是形状的尺寸是动态的,因此无法使用此方法。 .shape { position: relative; height: 100px; width: 200px; background: tomato; } .shape:after { position: absolute; content: ''; height: 0px; width: 0px; left: 0px; bottom: -100px; border-width: 50px 100px; border-style: solid; border-color: tomato tomato transparent transparent; } <div class="shape"> Some content </div> 运行代码段隐藏结果展开摘要 我也尝试过使用渐变作为背景(例如下面的代码),但是随着尺寸的变化,它变得混乱了。您可以将鼠标悬停在以下代码段的形状上,以了解我的意思。 显示代码段 .gradient { display: inline-block; …