所以我实际上只是从我网站的另一个目录、css 和所有目录中复制并粘贴了这段代码,但 BG 图像没有显示。它只是显示为白色。我确保在新目录中重新创建图像文件夹并重新上传背景,但背景只是不显示。这是我的 CSS(带有 bg 图像)
html,body {
background: url(images/bg_body.png) ;
font-family:Capriola;
height:100%;
margin:0;
padding:0;
}
这是我的html:
<html>
<style>
html,body {
background: url(images/bg_body.png) ;
font-family:Capriola;
height:100%;
margin:0;
padding:0;
}
</style>
<head>
<LINK REL=StyleSheet HREF="images/styles.css" TYPE="text/css" MEDIA=screen>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<link href='http://fonts.googleapis.com/css?family=Montserrat' rel='stylesheet' type='text/css'>
<title>SeaJay Source</title>
</head>
<body>
<body>
<center><br><br><br><br><br><br><br><br><br><br>
<img src="assets/logo.png" />
<div id="posting" class="posting">
<div class="title" id="title" color="white">Login</div>
<div id="texts" class="texts">
Welcome to SeaJay Source!<br>
<form method="post" action="<?=$_SERVER['PHP_SELF']?>" >
Username: <input class="input" type="text" name="username" placeholder="Username" /><br>
Password: <input class="input" type="password" name="password" placeholder="Password" /><br>
<input class="button" type="submit" value="Login" /> <br>
</form>
</div>
</center>
</body>
</html>
如您所见,我也尝试在 html 文件中包含样式,但这不起作用。