日期:2014-05-17  浏览次数:20685 次

小问题:图片显示和字体居中问题
一、 我做的一个插入页面的图片不显示?
代码: <td width="254" height="400"> 
<a href="shopcar.jsp"><img src="无标题-1.jpg"></img></a>
  </td>
这个事 body.jsp中的 点击body.jsp图片显示 
但在thing.jsp中它不显示
thing.jsp代码:<jsp:include page="Header.jsp"></jsp:include>
  <jsp:include page="body.jsp"></jsp:include>
  <jsp:include page="foot.jsp"></jsp:include>



二、 额的这个代码特别诡异, 我把</hr>删去,它就不居中了,添上又居中了 为毛啊为毛
<div id="Layer2" align="center">
<hr />——————————————————坑爹的不居中</hr>
<font color="#D237CB" size=h1>

本站服务热线:<%=config.getInitParameter("phone") %>
<br/>
本站服务信箱:<%=config.getInitParameter("email") %>
<br/>
本站服务器信息:<%=config.getServletContext().getServerInfo() %>
</font>
</div>

路过的大神求指点

------解决方案--------------------
CSS code
<style>
#Layer2{margin:0 auto, width:1000px, height:100px }
</style>

------解决方案--------------------
上面错误了,是分号隔开

CSS code
<style>
#Layer2{margin:0 auto; width:1000px; height:100px }
</style>