我的应用中有一个带有文本框叠加层的图片。
我正试图摆弄褪色盒子的大小。它太高了,但改变标题边距高度并不能降低高度。
任何人都可以看到需要更改的内容以减少文本框的高度吗?
由于
.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;
}
答案 0 :(得分:0)
很难说只有CSS,你能发布更多吗?
我最好的猜测是这一行:
min-height: 540px;
除非您希望最小高度为540px,否则我会使用高度。但就像我说的那样,根据你的CSS提供更准确的答案几乎是不可能的。