gpt4 book ai didi

css - 在背景图像之前,我需要我 body 的背景颜色

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

主页的“主要”部分(红色标记)的背景应该是黑色的,但由于图片原因,看不到。这是我的代码:

body {
color: white;
font-family: futura;
background-color: black;
font-size: 15px;
max-width: 700px;
margin-left: auto;
margin-right: auto;
background: url(Website_Bilder/background.png)
no-repeat center center fixed;
-moz-background-size: cover;
background-size: cover;
}

head {
font-size: 30px;
display: block;
position:relative;
background-position: center;
background-size: cover;
background-attachment: fixed;
text-align: center;
}

section {
font-size: 15px solid #a0a0a0;
border: 50px;
padding: 0%;
clear: ;
margin: 1em auto;
}

ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333;
}

li {
float: left;
}

li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}

/* link color */
li a:hover {
background-color: #111;
}

img {
width: 100%;
float: center;
height: auto;
max-width:100%;
display: block;
margin: 1em auto;

left:0px;
top:100px;
z-index:-1;
}

p {
padding 10px 20px 10px 20px;
margin 20px;
}

这就是我得到的:

rendered web page

/我制作了更好的屏幕截图并添加了更多代码

最佳答案

以防我对您的理解正确:您希望红色边框区域具有黑色背景而不是 CSS 正文选择器中定义为背景的图像吗?然后你只需要为这个区域周围的 html 标签定义一个新的 CSS class/id,就像这样:

html, body {
height: 100%;
width: 100%;
}

body {
color: white;
font-family: futura;
background-color: black;
font-size: 15px;
max-width: 700px;
margin-left: auto;
margin-right: auto;
background: url(http://tub.tubgit.com/reimg/resize-img.php?src=http://photos.up-wallpaper.com/images251/jdicnfzws24.jpg&h=1080&w=1920)
no-repeat center center fixed;
-moz-background-size: cover;
background-size: cover;
}

div.redArea {
min-width: 70%;
height: 100%;
background-color: black;
text-align: center;
}
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link href="style.css" type="text/css" rel="stylesheet">
</head>
<body>
<div class="redArea">
<p>this is a test</p>
</div>
</body>
</html>

redArea 类的宽度必须定义为 min-width,因为您已将 body 选择器的 max-width 设置为 700px。

关于css - 在背景图像之前,我需要我 body 的背景颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37842049/

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