急!!!菜鸟提问:用代码制作网页中,如何排布表格与文字的位置?
发布网友
发布时间:2022-04-21 22:49
我来回答
共2个回答
热心网友
时间:2022-04-22 00:18
是你不够仔细的问题,估计是随便从哪里复制的代码吧,丢了一些东西,测试好的代码如下,几处加入了一些标签:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<style type="text/css">
<!--
@import url("xuange style sheet.css");
-->
</style>
<style type="text/css">
<!--
.style2 {font:Trebuchet MS;
font-size:14;
color:#FF9999;
font-weight:bold}
.style3 {
font-family: Arial, Helvetica, sans-serif;
border-left: 200px;
float: inherit;
}
-->
</style>
</head>
<body> <!-- 新加入 -->
<table> <!-- 新加入 -->
<tr>
<td width="211" height="431" valign="top" bgcolor="#5C743D"> <!-- 修改了高度 -->
<table width="165" height="416" border="0" cellpadding="0" cellspacing="0" id="navigation" hspace="200" vspace="200">
<tr>
<td width="165" height="95"><br /></td>
</tr>
<tr>
<td width="200" height="57"><p> </p>
<p><a href="chap15.html"class="style2">Home</a></p>
</td>
</tr>
<tr>
<td width="200" height="60"><a href="zhonglei.html" class="style2">Graphic Design</a></td>
</tr>
<tr>
<td width="200" height="51"><a href="gsousuo.html" class="style2">Technical Writing</a></td>
</tr>
<tr>
<td width="200" height="55"><a href="lianxi.html" class="style2">Resume</a></td>
</tr>
<tr>
<td width="165" height="26"></head></td>
</tr>
</table>
</td> <!-- 新加入 -->
<td> <!-- 新加入 -->
<div id="content">
<h2 class="style2">Rose</h2>
<blockquote>
<p>
A rose is a perennial flower shrub or vine of the genus Rosa, within the family Rosaceae, that contains over 100 species and comes in a variety of colours. The species form a group of erect shrubs, and climbing or trailing plants, with stems that are often armed with sharp prickles. It is a common error to refer to roses having thorns. Thorns are modified branches or stems, whereas these sharp protrusions on a rose are modified epidermal tissues (prickles). Most are native to Asia, with smaller numbers of species native to Europe, North America, and northwest Africa. Natives, cultivars and hybrids are all widely grown for their beauty and fragrance.</p>
</blockquote>
</div>
</td> <!-- 新加入 -->
</tr> <!-- 新加入 -->
</table> <!-- 新加入 -->
</body>
</html>
热心网友
时间:2022-04-22 01:36
只要把文字和NAVIGATION BAR 都放一个表格里就行了。