gpt4 book ai didi

html - 不透明度不适用于标题 div

转载 作者:太空宇宙 更新时间:2023-11-04 04:16:48 24 4
gpt4 key购买 nike

Fiddle

我正在尝试使 div #top opacity: 50%,因此当您滚动时,它会在其下方显示网页的褪色部分。但是,当我运行它时,它不显示不透明度。它仍然显示固体。

CSS:

#top {
width: 100%;
height: 40px;
background: #96f226;
text-align: center;
font-size: 30px;
color: #252525;
position: relative;
position: fixed;
opacity: 50%;
}

HTML:

<div id='top'>Cuisine List</div>

最佳答案

opacity 取 0 到 1 之间的小数,如下所示:

opacity: 0.5;

See MDN for more information .

此外,

  • 您似乎有两个位置 - 您应该删除第一个
  • 要使 position: fixed 起作用,您必须至少指定一个位置,例如:

    top: 0px;

    这会将其锚定到顶部。

fixed fiddle

关于html - 不透明度不适用于标题 div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19800704/

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