可能重複:
Stretch and Scale a CSS image Background - With CSS only拉伸在CSS背景圖像
初學者問題: 這可能是一個基本的問題,我可能會錯過一些基本概念。我已經看到這個問題,但我認爲這不是我的問題。我想在CSS中展開我的背景圖片。這裏是我的CSS代碼
CSS:
.BackgroundColor
{
background-position: center center;
margin: 0px 0px 0px 0px;
background-image: url('Content/Tulips.jpg');//this image i want to stretch
background-repeat: no-repeat;
width: 1000px;
height: 1000px;
padding: 0px 0px 0px 0px;
}
這裏是我的HTML代碼
HTML:
<div class="BackgroundColor">
<div class="outerMost">
<div class="heading" id="loginheading">
Show Login
</div>
<div class="MainSect">
<div class="Label">
<asp:Label ID="usernameLabel" runat="server" Text="UserName" ClientIDMode="Static"></asp:Label>
</div>
<asp:TextBox ID="UsernameTextBox" runat="server" CssClass="textboxes" ClientIDMode="Static"></asp:TextBox>
<br />
<asp:Label ID="PasswordLabel" runat="server" Text="Password" CssClass="Label" ClientIDMode="Static"></asp:Label>
<asp:TextBox ID="TextBox2" runat="server" CssClass="textboxes"></asp:TextBox>
<br />
<asp:Button ID="LoginButton" runat="server" Text="Login"
BackColor="#00CCFF" BorderStyle="Solid" CssClass="loginButton" ClientIDMode="Static" />
</div>
<br />
<br />
<div>
<asp:Label ID="Label1" runat="server" Text="Date of Birth" CssClass="Label"></asp:Label>
<asp:TextBox ID="CalenderTextBox" runat="server" ClientIDMode="Static" CssClass="textboxes"></asp:TextBox>
</div>
<div id="tabSection">
<ul>
<li><a href="#basicInfo">Basic info</a></li>
<li><a href="#Products">Products</a></li>
<li><a href="#SavingAccount">Depositer</a></li>
</ul>
<div id="basicInfo">
Basic Info will be mentioned here and bla bla bla
</div>
<div id="Products">
Products and other releases should be mentioned here
</div>
<div id="SavingAccount">
Information about saving account should be mentioned here and bla bla bla
</div>
</div>
</div>
</div>
所以我想在page.Ignore設置背景圖片內部代碼。請幫助我拉伸圖像,因爲我的Style builder
沒有顯示任何有關拉伸圖像的屬性。上面提到的鏈接是在Html中擴展圖像,但我想在CSS中完成。
編輯: 並請告訴我如何包括在Visual Studio CSS3,因爲我的CSS編輯器顯示高達CSS2.1
感謝
是的,我想這樣做,但編譯器intellicense的編譯器不顯示。我認爲這是CSS3的一個屬性,但我不能在項目中包含CSS3,因爲我第一次使用CSS3 –