gpt4 book ai didi

html - 顶部的 z-index 固定 div 似乎不起作用

转载 作者:行者123 更新时间:2023-11-28 09:58:34 25 4
gpt4 key购买 nike

我希望这个 div 位于我的页面顶部,它将在整个页面中保持固定,并与任何交叉元素重叠。就像 facebook 的顶部蓝色搜索栏一样。每当我向下滚动时,表格都会出现在 div 上方,但我想要相反的东西。那么这里是代码。当我使用 z-index 时,我的 div 上的图像会变黄。

<!DOCTYPE html>
<html>
<head>
<style>

#fixedDiv{
position:fixed;
z-index:1;
top:0px;
left:0px;
border:3px groove blue;
height:200px;
width:1360px;
background-color:yellow;
opacity:.4;
margin-right:10px;
}

p.fixPara{
z-index:1;
position:fixed;
letter-spacing:20px;
font-size:50px;
font-weight:bold;
color:purple;
top:20px;
left:7em;
}

table{
background-color:white;
border:3px outset navy;
width:700px;
height:500px;
margin-top:1000px;
margin-left:300px;
}

tr>td{
padding:15px;
font-size:20px;
text-align:center

</style>
</head>

<body>

<div id="fixedDiv"><p class="fixPara">This is Fixed!!</p></div>

<img src="grass.jpg" style="position:fixed;right:3px;top:3px;" height=100px width=150px>
<img src="black.jpg" style="position:fixed;top:3px;left:3px;" height=100px; width=150px>

<table>
<tr>
<th colspan="3"><h2>VISIT THE SUITABLE LINK</h2></th>
</tr>
<td>Google</td>
<td>Youtube</td>
<td>Facebook</td>
</tr>

<tr>
<td>Kickass to</td>
<td>JAVA</td>
<td>Apple</td>
</tr>

</table>

</body>
</html>

添加FIDDLE

最佳答案

首先关闭最后一个CSS样式,你需要去除不透明度 并添加 img 标签 z-index:5;

DEMO

#fixedDiv {
background-color: yellow;
border: 3px groove blue;
height: 200px;
left: 0;
margin-right: 10px;
opacity: 0.4;/*remove*/
position: fixed;
top: 0;
width: 1360px;
z-index: 1;
}

关于html - 顶部的 z-index 固定 div 似乎不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24821428/

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