我正在使用一个带有HTML正文的页面和一些与head部分中定义的body相关联的属性。执行页面图像的时间是某些时候,有时则不是。
<head>
<style type="text/css">
body {
background-image: url('Assets/Img/bg2.jpg');
background-size: cover; /* <------ */
background-repeat: no-repeat;
background-position: center center; /* optional, center the image */
}
</style>
</head>
身体部分
<body class="signup-page">
<div id="content"></div>
</body>
究竟是什么问题?任何想法都将不胜感激。