我在使用 CSS 检索要显示的图片时遇到问题,但它适用于我使用 CSS 的第一个表单,但问题是当我创建第二个 CSS 并应用于不同的页面时,我的背景图像无法显示,我确认我的图片位置正确。我可以知道可能导致这种情况的问题吗?
<head runat="server">
<link rel="stylesheet" href="studymain.css" type="text/css">
<title></title>
<style type="text/css">
.style1
{
text-align: center;
}
.style2
{
font-size: 50pt;
}
</style>
</link>
================================================== 下面是我的 studymain.css 文件
body {
background-repeat:no-repeat;
background-position: center;
background-attachment:absolute;
width:100%;
font-weight: 700;
color: #C0C0C0;
background-color: transparent;
background-image: url('images/Login.jpg');
}