HTML代码···
发布网友
发布时间:2022-04-25 12:57
我来回答
共1个回答
热心网友
时间:2022-04-07 12:42
我觉得有两种方法可以实现,不知是不是你想要的效果
方法一:将正文部分和标题内容分别放在不同的表格行中,代码如下(你原来的代码有问题,两个<body>应该是不行的)
<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>如何让表格内的文字换行同时能改变字体颜色</title>
</head>
<body leftmargin="0" topmargin="0" bgcolor= Black>
<div align="center"><img src="图片" width="1000" height="150" /> </div>
<font color="lemonchiffon" size="3">这下面应该是表格内容吧?我就是想在表格里建立网页内容··否则显得太宽
<table width="100%" height="100%" border="0" align="center" cellpadding="0" cellspacing="0" style="word-break:break-all">
<tr>
<td align="center" valign="middle">
<table width="900" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#9966CC">
<tr>
<td align="middle" valign="top " height="80"> <font color="coffee " size="10">项目介绍</font></td></tr>
<tr valign="top"><td align="left">
<font color="lemonchiffon" size="3">
<p>正文···(现在是输入的正文都是随上面的 项目介绍 这个文字一起居中</p>
<font color="White" size="5"><p>而我想换行,从左边开始录入文字·同时能改变字体颜色和大小·还有在这个表格里还能插入其他的东西吗?如图片··</p>
</td> </tr>
</table></td>
</tr>
</table>
</body>
</html>
方法二:把标题和正文部分分别放在两个<div>...</div>之中,然后设定不同的样式,推荐你使用第二种方法:
......
<table width="900" height="1500" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#9966CC">
<tr>
<td valign="top"><div style=" text-align:center; font-size:30px;color:#coffee;height:60px;">项目介绍</div>
<div style=" text-align:left;font-size:16px ">正文···(现在是输入的正文都是随上面的 项目介绍 这个文字一起居中
而我想换行,从左边开始录入文字·同时能改变字体颜色和大小·还有在这个表格里还能插入其他的东西吗?<span style="font-size:20px;color:#00ffff">这里还是可以改变字体大小、颜色</span>如图片··</div>
</tr>
</table>
......