.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');
うまくいかない!!!
見つけられないどこかで間違っていますか?これで疲れた!!!