我真的有一個非常糟糕的時間,我的背景圖像無法正常工作。 這是我的CSS文件:CSS背景圖像和一些部門不工作
body
{
background-image:url('college_monitor.jpg');
background-position:left center;
background-repeat: no-repeat;
background-size:contain;
}
圖片是在同一文件夾中的HTML和CSS文件。
也有一些我的CSS部門的不正常工作,這是我司的CSS:
#FullName
{
margin-top:10px;
margin-left:400px;
}
#FirstName
{
font-size:0.9em;
color: cornflowerblue;
border: 2px solid lime;
border-radius: 25px;
background-color: black;
margin: 20px;
width: 150px;
text-align:center;
}
#FatherName
{
font-size:0.9em;
color: cornflowerblue;
border: 2px solid lime;
border-radius: 25px;
background-color: black;
margin: 20px;
width: 150px;
text-align:center;
}
#LastName
{
font-size:0.9em;
color: cornflowerblue;
border: 2px solid lime;
border-radius: 25px;
background-color: black;
margin: 20px;
width: 150px;
text-align:center;
}
#Diploma
{
margin-left:400px;
font-size:0.9em;
color: cornflowerblue;
border: 2px solid lime;
border-radius: 25px;
background-color: black;
margin: 20px;
width: 150px;
text-align:center;
}
#HighSchool
{
margin-left:400px;
font-size:0.9em;
color: cornflowerblue;
border: 2px solid lime;
border-radius: 25px;
background-color: black;
margin: 20px;
width: 150px;
text-align:center;
}
和HTML文件:
<div id="FullName">
<div id="FirstName"><b><h3>First name:</h3></b></div>
<input class="input" maxlength="10" name="first" type="text" value="" size="30" />
<div id="FatherName"><label><b><h3>Father name:</h3></b></div>
<input class="input" maxlength="10" name="father" type="text" value="" size="30" />
<div id="LastName"><b><h3>Last name:</h3></b></div>
<input class="input" maxlength="10" name="last" type="text" value="" size="30" />
</div>
<div id="Uni">
<div id="Diploma"><h3>Diploma:</h3></b></div>
<input type="radio" name="where" value="sv" size="30" /> sv
<input type="radio" name="where" value="sg" size="30" /> sg
<input type="radio" name="where" value="se" size="30" /> se
<input type="radio" name="where" value="lh" size="30" /> lh
<input type="radio" name="where" value="freshman" size="30" /> freshman
<div id="HighSchool"><b><h3>High School:</h3></b></div>
<input class="input" maxlength="10" name="hight" type="text" value="" size="30" />
的 「保證金左」 唐」 t在文憑和高中部門工作 我的代碼有什麼問題? 謝謝, 約翰尼拉
「不工作」是什麼意思? –
背景圖片未出現 –
您確定圖片路徑正確嗎?你怎麼確定?確保它正確加載 –