div 背景图不显示
我在asp.net中写了如下代码 但是图片不显示 怎么回事 求高人 非常感谢<head id="Head1" runat="server">
<title>英语六级在线考试</title>
<style type="text/css">
.one
{
height:70px;
width:980px;
background-image:url(../image/kaoshi_01.gif)
background-repeat: repeat;
float:left;}
.two{}
.three{}
</style>
</head>
<body>
<div style="width:980px; margin:auto;">
<div class="one"></div>
<div class="two"></div>
<div class="three"></div>
</div>
</body> --------------------编程问答-------------------- --------------------编程问答-------------------- <head id="Head1" runat="server">
<title>英语六级在线考试</title>
<style type="text/css">
.one
{
height:70px;
width:980px;
background:url(2.jpg);这里是background:url,还有就是后面加分号
background-repeat: repeat;
float:left;}
.two{}
.three{}
</style>
</head>
<body>
<div style="width:980px; margin:auto;">
<div class="one"></div>
<div class="two"></div>
<div class="three"></div>
</div>
</body> --------------------编程问答-------------------- background:url(2.jpg);这里是background:url,还有就是后面加分号
background:url(2.jpg);能显示 background-image:url也能显示
background:是简写,除URL外,后面还可以设置图片的其他属性,用空格隔开;
background-image:url就只能接图片的路径这一个属性。
上面说错了
你原因是 没有分号 --------------------编程问答-------------------- background-image:url(../image/kaoshi_01.gif)
估计是没有找到这个图片。路径不对,
还有是不是你的div没有内容,或者没有定义宽度高度引起的 --------------------编程问答-------------------- 路径问题 。。。 --------------------编程问答-------------------- 估计是背景图片路径问题,你再当前页面输入图片路径试试,看有没有显示,还有;不要忘了 --------------------编程问答-------------------- 参考:
http://www.cnblogs.com/insus/archive/2011/08/05/2128601.html
补充:.NET技术 , ASP.NET