首页上一页 1 下一页尾页 1 条记录 1/1页
尊敬的明日科技的老师,关于css问题咨询
发表在ASP.NET图书答疑
2014-08-25
是否精华
是
否
版块置顶:
是
否
我是初学者,在用CSS编写背景图片时候,出现一个问题,就是背景图片可以在Default.aspx编辑界面显示,但是运行是图片不显示,我试了,路径应该是没问题。代码如下:
CSS中的代码:
#pagedh {
background-position: center;
width: 1000px;
height: 175px;
background-image: url('App_GlobalResources/index_02.gif');
background-repeat: no-repeat;
}
Default.aspx文件里的代码:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>人事管理系统</title>
<link href="css.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<form id="form1" runat="server">
<div id="pagedh">
</div>
</form>
</body>
</html>
麻烦老师了
CSS中的代码:
#pagedh {
background-position: center;
width: 1000px;
height: 175px;
background-image: url('App_GlobalResources/index_02.gif');
background-repeat: no-repeat;
}
Default.aspx文件里的代码:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>人事管理系统</title>
<link href="css.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<form id="form1" runat="server">
<div id="pagedh">
</div>
</form>
</body>
</html>
麻烦老师了