gpt4 book ai didi

html - 如何在div中设置背景

转载 作者:行者123 更新时间:2023-11-28 15:46:57 26 4
gpt4 key购买 nike

我需要的最终结果背景图片:

Resulting background image

我用过的背景图:

Original background image

但我有这个 Fiddle

:: fiddle 总结::

HTML...

<div id="top-part">
<div id="topmost">
<div id="top-most" class="wrapper">

</div>
</div>
<div id="topmenu" class="wrapper">

</div>

CSS...

.wrapper{
position: relative;
width: 943px;
margin: 0 auto;
}
#top-part{
background: url(img/bg-header-effects.png) no-repeat top center;
}
#topmost{
background: #900;
opacity: 0.8;
}
#top-most{
height: 139px;
}
#topmenu{
background: #900;
opacity: 0.8;
height: 51px;
border-radius: 0 0 20px 20px;
}

最佳答案

更新 - 覆盖您最近的编辑

#header{

background: #f00 url('http://i.stack.imgur.com/GWVfL.jpg');
opacity: .6;
width: 100%;
height: 189px;
}

Working Fiddle


您可以尝试使用 CSS 中的 background 属性:

div{
background: url('path_to_your_image.jpg') no-repeat;
}

Learn more about using the background-image property here

注意:

backgroundbackground-image 是有区别的。在这个答案中,我使用了 background 属性,它基本上采用 CSS 中背景图像的所有可能选项,并让它们在单个调用中使用。

例如,您可以将上面的内容拆分为两个选择器:

div{
background-image: url('path_to_your_image.jpg') no-repeat;
background-repeat: no-repeat;
}

关于html - 如何在div中设置背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16050792/

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