gpt4 book ai didi

css - 用另一个 div 填充一个 div

转载 作者:搜寻专家 更新时间:2023-10-31 22:08:02 24 4
gpt4 key购买 nike

<分区>

我正在制作一个由一堆面板组成的网站。这些面板都有重复的纹理,但为了使网站看起来更好,我决定使用彩色 div 和不透明度对图像进行着色。我不想使用更多图片,所以请不要建议我只是重新给图片上色。

我的问题是,当我将文本放入 tint div 时,字体继承了不透明度,最终变成灰色而不是白色,但是当我将它放在 tint div 之外时,我失去了色调。

.tint {
display: block;
position: static;
height: 100%;
width: 100%;
line-height: 100%;
opacity: 0.4;
z-index: -1;
filter: alpha(opacity=40);
/* For IE8 and earlier */
}
.ExpDiv {
-moz-border-radius: 7px;
-webkit-border-radius: 7px;
-khtml-border-radius: 7px;
-webkit-box-shadow: 0 0 60px rgba(0, 0, 0, 0.6);
-moz-box-shadow: 0 0 60px rgba(0, 0, 0, 0.6);
box-shadow: 0 0 60px rgba(0, 0, 0, 0.6);
border: solid 3px;
-webkit-transition: all .5s ease-in-out 0.2s;
-moz-transition: all .5s ease-in-out 0.2s;
-ms-transition: all .5s ease-in-out 0.2s;
-o-transition: all .5s ease-in-out 0.2s;
transition: all .5s ease-in-out 0.2s;
background-color: #99ccff;
min-width: 7px;
min-height: 9px;
max-width: 150px;
max-height: 200px;
overflow: hidden;
background-image: url(striped_linenen.png);
background-repeat: repeat;
float: left;
}
<div class="ExpDiv" style="float:left;">
<div class="tint" style="background: #99CCFF; ">
Content For these Divs will be inserted by the Owner...
</div>
</div>
<div class="divider">
<br />
</div>
<div class="ExpDiv" style="float:left;">
<div class="tint" style="background: #996699; "></div>
Content For these Divs will be inserted by the Owner...
</div>

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