gpt4 book ai didi

用于褪色文本背景的 CSS

转载 作者:行者123 更新时间:2023-11-28 08:29:04 25 4
gpt4 key购买 nike

我的应用中有一张带有文本框叠加层的图像。

我正在尝试调整褪色框的大小。它太高了,但更改页眉边距高度并不能降低高度。

任何人都可以看到需要更改什么以降低文本框的高度吗?

谢谢

.module {
background: url(glowcell.jpg);
background-attachment: fixed;
width: 100%;
min-height: 540px;
position: relative;
overflow: hidden;
margin: 0px;
}
.module > header {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
padding: 20px 10px;
background: inherit;
background-attachment: fixed;
overflow: hidden;
}
.module > header::before {
content: "";
position: absolute;
top: -20px;
left: 0;
width: 200%;
height: 200%;
background: inherit;
background-attachment: fixed;
-webkit-filter: blur(4px);
filter: blur(4px);
}
.module > header::after {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.25)
}
.module > header > h1 {
margin: 0;
color: white;
font-family: 'Quicksand', sans-serif;
font-size: 50px;
position: relative;
z-index: 1;
}

* {
box-sizing: border-box;
}

最佳答案

仅凭 CSS 很难判断,您可以发布更多内容吗?

我最好的猜测是这一行:

  min-height: 540px;

除非您希望最小高度为 540px,否则我只会使用高度。但正如我所说,仅根据您的 CSS 几乎不可能给出更准确的答案。

关于用于褪色文本背景的 CSS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28378138/

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