我必须将静态标题图像添加到简单的html页面,它有两个div标签 -
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1 /DTD/xhtml1-strict.dtd">
<html>
<head>
<title>mysite</title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<link rel="stylesheet" type="text/css" href="site.css"/>
<script type="text/javascript" src="jquery-1.4.2-min.js"></script>
<script type="text/javascript" src="site.js"></script>
</head>
<body>
<img src="header.jpg"/> ----> this image is not working
<div id="site"></div>
<div id="doc" class="documents"></div>
</body>
</html>
两个div标签工作正常..但我看不到图像
答案 0 :(得分:3)
将静态图像放入另一个div标签..就像这样
<body>
<div id="static"> <img src="header.jpg"/> <div>
<div id="site"></div>
<div id="doc" class="documents"></div>
并注意您的图片必须位于同一目录