在 .CSS 文件中:
当我申请
body {
font-size: .85em;
font-family: "Segoe UI", Verdana, Helvetica, Sans-Serif;
color: #232323;
background-color: #fff;
background: url('Images/Login_Background.jpg');
background-repeat: no-repeat;
background-attachment: fixed;
background-color: #FFFFFF;
background-position: center center;
background-size: 100% 100%;}
工作background-image:url('Images/Login_Background.jpg');
正常
但是一旦我做了一个像这样的ID:
#login {
background: url('Images/Login_Background.jpg');
background-repeat: no-repeat;
background-attachment: fixed;
background-color: #FFFFFF;
background-position: center center;
background-size: 100px 100px;}
当我<section id="login">
使用这个 css id 时;风格background: url('Images/Login_Background.jpg');
不行!!!
我在我无法发现的地方出错了吗?从此累死了!!!