jsp 中td background不显示背景
第六行和第八行td中设置的background都能显示,从第八行往后,我在tr中设置background就不显示了,这是为什么?<%@pagelanguage="java...
第六行和第八行 td中设置的background 都能显示,从第八行往后,我在tr中设置background就不显示了,这是为什么? <%@ page language="java" contentType="text/html; charset=GBK"%>
<%@ taglib uri="/struts-tags" prefix="s2"%>
<html>
<head><title>首页</title></head>
<body background="images/back.gif">
<table border="2" width="80%" cellspacing="5" cellpadding="5">
<tr height="120"><td style="text-indent:5" valign="bottom" background="images/pcard1.jpg"><font size="5" color="#004790"></font></td></tr>
<tr height="30"><td style="text-indent:5" valign="bottom" ><font size="5" color="#004790"><b>■推荐信息</b>『缴费专区』</font></td></tr>
<tr >
<table border="2" width="80%" cellspacing="5" cellpadding="5" >
<s2:set name="PayforList" value="#request.PayforList"/>
<s2:iterator status="PayforStatus" value="PayforList">
<s2:if test="#PayforStatus.odd"><tr height="23"></s2:if>
<td style="border:1 solid" width="50%"><font size="5"><s2:property value="#session.typeMap[infoType]"/> <a href="info_SingleShow.action?id=<s2:property value='id'/>"><s2:property value="getInfoTitle()"/></a></font></td>
<s2:if test="#PayforStatus.even"></tr></s2:if>
</s2:iterator>
</table>
</tr>
<tr height="120"><td style="text-indent:5" valign="bottom" background="images/pcard1.jpg"><font size="5" color="#004790"><b>■推荐信息</b>『缴费专区』</font></td></tr>
<tr height="30" border="1"><font size="5" color="#004790" ><b>■信息快速搜索</b></font></tr>
<tr><td align="left" height="30%" width="100%">111111111111111111111111111</td></tr>
<tr align=center>
<table border="1" width="10%" >
<tr>
<td align="left" ><s2:select emptyOption="true" list="#session.typeMap" headerKey="100" headerValue="请选择" listKey="key" listValue="value"/></td>
<td><s2:submit value="查询"/></td>
</tr>
</table>
</tr>
<tr><td background="images/pcard1.gif"></td>1111111111111111111111111111111111111111111111111111</tr>
</table>
</body>
是这样写么,依然显示不出来啊 <tr><td style="background-image:url('images/pcard1.gif')">1111111111111111111111111111111111111111111111111111</td></tr> 展开
<%@ taglib uri="/struts-tags" prefix="s2"%>
<html>
<head><title>首页</title></head>
<body background="images/back.gif">
<table border="2" width="80%" cellspacing="5" cellpadding="5">
<tr height="120"><td style="text-indent:5" valign="bottom" background="images/pcard1.jpg"><font size="5" color="#004790"></font></td></tr>
<tr height="30"><td style="text-indent:5" valign="bottom" ><font size="5" color="#004790"><b>■推荐信息</b>『缴费专区』</font></td></tr>
<tr >
<table border="2" width="80%" cellspacing="5" cellpadding="5" >
<s2:set name="PayforList" value="#request.PayforList"/>
<s2:iterator status="PayforStatus" value="PayforList">
<s2:if test="#PayforStatus.odd"><tr height="23"></s2:if>
<td style="border:1 solid" width="50%"><font size="5"><s2:property value="#session.typeMap[infoType]"/> <a href="info_SingleShow.action?id=<s2:property value='id'/>"><s2:property value="getInfoTitle()"/></a></font></td>
<s2:if test="#PayforStatus.even"></tr></s2:if>
</s2:iterator>
</table>
</tr>
<tr height="120"><td style="text-indent:5" valign="bottom" background="images/pcard1.jpg"><font size="5" color="#004790"><b>■推荐信息</b>『缴费专区』</font></td></tr>
<tr height="30" border="1"><font size="5" color="#004790" ><b>■信息快速搜索</b></font></tr>
<tr><td align="left" height="30%" width="100%">111111111111111111111111111</td></tr>
<tr align=center>
<table border="1" width="10%" >
<tr>
<td align="left" ><s2:select emptyOption="true" list="#session.typeMap" headerKey="100" headerValue="请选择" listKey="key" listValue="value"/></td>
<td><s2:submit value="查询"/></td>
</tr>
</table>
</tr>
<tr><td background="images/pcard1.gif"></td>1111111111111111111111111111111111111111111111111111</tr>
</table>
</body>
是这样写么,依然显示不出来啊 <tr><td style="background-image:url('images/pcard1.gif')">1111111111111111111111111111111111111111111111111111</td></tr> 展开
3个回答
展开全部
用 style="background-image:url('images/pcard1.gif')"
绝对可以的。
url中图片路径不对的话,是无法显示背景图片的。
你先找个可以显示的图片来试试.
如,用下面的代码建立一个html文件。
<!--开始 -->
<table>
<tr height="200" width="300">
<td style="background-image:url('https://gss0.bdstatic.com/70cFsjip0QIZ8tyhnq/img/logo-zhidao.gif');width='100%'">1000</td>
<td></td>
</tr>
</table>
<!--结束 -->
用下面这个绝对可以。
style="background-image:url('images/pcard1.gif')"
用这个也行
style="background:url('images/pcard1.gif')"
绝对可以的。
url中图片路径不对的话,是无法显示背景图片的。
你先找个可以显示的图片来试试.
如,用下面的代码建立一个html文件。
<!--开始 -->
<table>
<tr height="200" width="300">
<td style="background-image:url('https://gss0.bdstatic.com/70cFsjip0QIZ8tyhnq/img/logo-zhidao.gif');width='100%'">1000</td>
<td></td>
</tr>
</table>
<!--结束 -->
用下面这个绝对可以。
style="background-image:url('images/pcard1.gif')"
用这个也行
style="background:url('images/pcard1.gif')"
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
是bgcolor 吧 不是backgroundcolor
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询