gpt4 book ai didi

css - 标题中多行的倾斜边缘

转载 作者:行者123 更新时间:2023-11-28 01:50:00 25 4
gpt4 key购买 nike

我遇到了一个小的 CSS 问题。我正在尝试为标题获取倾斜的边缘,这也适用于多行(参见 added screen )。重要提示:倾斜的边缘应该出现在每一行上。

我已经尝试了以下无法 100% 起作用的解决方案:

.element {
background: red;
line-height: 30px;
width: 100px;
margin-right: 50px;
position: relative;
display: inline-block;
clear: both;
}

.element:after {
background: #f00;
content: "";
display: block;
height: 100%;
transform: skew(-20deg);
position: absolute;
right: -5px;
top: 0;
width: 30px;
}
<div class="element">Headline 1</div>
<div class="element">Headline 2 veeery long</div>

--> 不适用于多行,因为它需要满足右下角和左上角

你能帮我解决这个问题吗?

最佳答案

这应该与内联显示一起使用:

body {
background: black;
}

div {
max-width: 300px;
}

h1 {
line-height: 46px;
color: #fff;
background-image: linear-gradient(110deg, transparent 50%, red 53%), linear-gradient(110deg, red 50%, transparent 53%), linear-gradient(to left, red, red);
background-size: 16px 100%, 16px 100%, calc(100% - 32px) 100%;
background-position: left, right, center;
background-repeat: no-repeat;
display: inline;
padding: 0 16px;
-webkit-box-decoration-break: clone;
box-decoration-break: clone;
}
<div><h1>Some dynamic text on several lines with no special meaning...</h1></div>

目前不支持 Edge,因为不支持“box-decoration-break”(还?)。

关于css - 标题中多行的倾斜边缘,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49995425/

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