gpt4 book ai didi

html - 如何在div容器中指定背景图片高度

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

我有一个容器,我有两个部分,我想一次显示一个。像 This 这样的滚动网页!

基本上我如何让第一个 div 元素(部分)有自己适合屏幕的背景,而第二个部分应该只有一个空白屏幕。非常感谢 !请示例将不胜感激:)

这是我的CSS:

* {
box-sizing: border-box;
/* look this up */
}

body {
margin: 0;
}

/* style what the sections have in common */
.container {
width: 100%;
float: left;
top: 0px;
left: 0px;
text-align: center;
padding: 1em;

}


.about {

float:left;
height:auto;
width:100%;

background: url(10.jpg);
background-repeat: no-repeat;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size:100%;




}

/* target specific sections */
.heads {
background-color: red;
float:left;
height:auto;
width:100%;
}

这是我的HTML:

<body>

<section class="container about">
About
</section>

<section class="container heads">
About
</section>

</body>

最佳答案

.container{
width: 100%;
float: left;
text-align: center;
padding: 1em;
background-position: center;
height: 100%;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size:100%;
}

.about{
background: url(10.jpg);
}

.heads{
background-color: red;
}

关于html - 如何在div容器中指定背景图片高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22245384/

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