gpt4 book ai didi

css - 为什么文字可见,但背景不可见?

转载 作者:行者123 更新时间:2023-11-28 12:20:42 24 4
gpt4 key购买 nike

我有以下标记:

<div class="one">Content</div>
<div class="two"></div>

和以下样式表:

.one, .two {
height: 20px;
}
.one {
background-color: #f00;
}
.two {
background-color: #0f0;
margin-top: -10px;
}

为什么文本 Content 可见,但红色背景不可见?由于给定的样式表,我希望文本也只能部分可见。

为了您的方便,我还创建了一个 jsFiddle .

最佳答案

如果您希望第一个 div 的文本仅部分可见,则需要使用位置和 z-index。

.one, .two {
height: 20px;
}
.one {
background-color: #f00;
position: relative;
z-index: 1;
}
.two {
background-color: #0f0;
margin-top: -10px;
position: relative;
z-index: 2;
}

http://jsfiddle.net/v5LfZ/2/

关于css - 为什么文字可见,但背景不可见?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14584366/

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