gpt4 book ai didi

html - 背景图片不显示

转载 作者:太空宇宙 更新时间:2023-11-04 04:58:03 26 4
gpt4 key购买 nike

我正在使用以下 css 文件生成一个简单的布局作为测试:

@font-face {
font-family: blackboard;
src: url('../fonts/KGTenThousandReasons.ttf');
}

body {
font-family: blackboard;
font-size: 1.3em;
color: #FFF;
margin: 0px;
}

html {
background-image: url('../images/Chalkboard.jpg') no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
}

.container {
margin: 0 auto;
width: 980px;
}

#header {
text-align: center;
margin-top: 15px;
}

#header p {
font-size: 0.5em;
}

#left_column {
float: left;
}

#right_column {
float: right;
}

.list {

}

.list li {
margin: 5px;
}

.list ul {
list-style-type: none;
font-size: 0.7em;
}

.list2 {
position: relative;
width: 200px;
list-style-type: none;
top: 75px;
right: 100px;
font-size: 0.6em;
float: left;
}

.clear_both {
clear: both;
}

#footer {
width: 100%;
height: 50px;
font-size: 0.5em;
}

.small_container {
position: relative;
top: 25%;
height: 100%;
text-align: center;
}

a {
color: white;
text-decoration: none;
}

a:hover {
color: gray;
}

.selected {
color: gray;
font-weight: bolder;
}

.paginate {
border: 1px solid whitesmoke;
padding-left: 10px;
padding-right: 10px;
margin: 5px;
}

#pagination {
padding-top: 10px;
}

h1 {
font-size: 1.1em;
}

我遇到的问题是,当我将它上传到我的托管服务时,html 标记的背景图像不会显示。它在我的本地机器上完美运行。我特别要说的是这些:

html {
background-image: url('../images/Chalkboard.jpg') no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
}

字体很好,其他一切都很好,只是背景图像不会产生结果。任何帮助都会很棒。

最佳答案

将“背景图像”更改为“背景”。

html {
background: url('../images/Chalkboard.jpg') no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
}

关于html - 背景图片不显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12030860/

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