gpt4 book ai didi

html - 更改背景图像不透明度,而不影响最大高度、最大宽度

转载 作者:行者123 更新时间:2023-11-28 06:36:13 24 4
gpt4 key购买 nike

我遇到了一个问题,我有一张背景图片,我想将不透明度设置为 0.35,我看到通过使用图片作为标签,使用 absolute 属性你可以欺骗 CSS 没有背景图像不透明度选择器。我还在我的其他图像上设置了最大宽度,所以当我尝试这样做时,我所有的图像都恢复到原来的巨大尺寸。这是我的代码,任何答案都会有所帮助,我用最大宽度的图像恢复到我的原始代码。

     html {
background-image: url(*image url*);
background-repeat: no-repeat;
background-size: cover;

}
img {
max-width: 100px;
max-height: 100px;
}
.navBar {
color: white;
text-align: right;
}

最佳答案

试试这个

 html {
background-image: url(*image url*);
background-repeat: no-repeat;
background-size: cover;

}
body {
background: rgba(255, 255, 255, 0.53);
}

关于html - 更改背景图像不透明度,而不影响最大高度、最大宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34668864/

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