gpt4 book ai didi

html - 50% height Centered background-image 剩余空间为 background-color

转载 作者:太空宇宙 更新时间:2023-11-04 08:42:25 25 4
gpt4 key购买 nike

我想要一个背景,其中用户高度的前 50% 是一个居中的背景图像,因此它适合 100% 的宽度和 50% 的高度。剩余的 50% 或更多(如果内容超过 100% 高度)应该是背景色。

例子: Example

这是我目前所拥有的:

html{
height: 100%;
}
body{
width: 100%;
height: 100%;
background-color: #e1e1e1;
}
#wrapper{
width: 100%;
height: 50%;
background: url('http://wallpaper-gallery.net/images/wallpaper-black-and-white/wallpaper-black-and-white-7.jpg') no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
background-position: center;
}
#content{
width: 200px;
margin: 0 auto;
background-color:white;
}
<body>
<div id="wrapper">
<div id="content">
<p>
Lorem Ipsum Dolar
</p>
</div>
</div>
</body>

JSFiddle:https://jsfiddle.net/aL7devux/6/

我知道这是不对的。首先,图像没有居中,我已经将 html + body 的高度设置为 100%,如果内容超过用户浏览器高度的 100%,这将不起作用。此外,我将 #wrapper 的高度设置为 50%,这也不正确,它应该只适用于背景图像。

我将如何(并且应该)实现这一目标?

最佳答案

有很多方法可以做到这一点,但考虑到您的方法,这是最简单的方法:

body {
width: 100%;
height: 100%;
background-color: #e1e1e1;
}

#wrapper {
width: 100%;
background: url('http://wallpaper-gallery.net/images/wallpaper-black-and-white/wallpaper-black-and-white-7.jpg') no-repeat center 240%, #858585;
padding-top: 2rem;
}

#content {
width: 60%;
height: 700px;
margin: 0 auto;
background-color: white;
}
<body>
<div id="wrapper">
<div id="content">
<p>
Lorem Ipsum Dolar
</p>
</div>
</div>
</body>

再一次,这是为适应您的方法而设计的,还有一些其他方法可以解决这个问题。

所有属性都是虚构的,因此它们可以满足您的目标。例如,您可以看到背景图像的 Y 偏移量为 250%。在这种情况下,您必须创建一个非常适合背景顶部的图像,因此您不需要负偏移。

关于html - 50% height Centered background-image 剩余空间为 background-color,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44025364/

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