div
ヘッダーが1つあるマスターページがあります。
#header
{
background-image: url("images/ST_ERP_2.jpg");
background-repeat: no-repeat;
background-position: right top;
height: 200px;
width: 1200px;
}
以下はヘッダーですdiv
<div id="header" >
<h1>
Header goes here</h1>
</div>
上記の両方のコードスニペットは私のマスターページにあります。
xyz.aspx
これで、ディレクトリ内にコンテンツページ( )ができました。
画像(ST_ERP_2.jpg)はimages
フォルダにあります。
xyz.aspx
これで、ブラウザでページ()を表示しようとすると、設定した画像が表示されず、background-image
代わりに空白の白い領域が表示されます。何が問題なのですか?
ノート:
私も試し
background-image: url("~/images/ST_ERP_2.jpg");
ましたが、役に立ちません。VS2010とASP.NETを使用しています
マスターページ:
<%@ Master Language="C#" AutoEventWireup="true" CodeFile="Site.master.cs" Inherits="Site" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="ajax" %>
<%--<%@ Register Assembly="AccordionSiteMap" Namespace="FranchiseBlast.UserControls.Interface"
TagPrefix="lb" %>--%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<style type="text/css">
#wrapper
{
background: #FFFFFF;
margin: 0px auto;
width: 1200px;
height: 1024px;
}
#header
{
background-image: url("images/ST_ERP_2.jpg");
background-repeat: no-repeat;
background-position: right top;
height: 200px;
width: 1200px;
}
#footer
{
background: #838283;
height: 40px;
width: 1200px;
margin: 600px 0px;
}
</style>
<title></title>
</head>
<body style="background: LightBlue">
<form id="form1" runat="server">
<div id="wrapper">
<div id="header" >
<h1>
Header goes here</h1>
<br />
</div>
<!--Header-->
.... content place holder and etc ......
<div id="footer" style="clear: both">
<h3>
Footer goes here</h3>
</div>
<!--Footer-->
</div>
</form>
</body>
</html>