html中怎样让td的内容折行显示

html-css023

html中怎样让td的内容折行显示,第1张

<html>

<head><title>ChangeLine</title></head>

<body>

<FORM METHOD=POST ACTION="">

<TABLE id="Table1" width="300" border="1" align="center">

<TR>

<TD>

<TABLE id="Table2" align="left" border="1" width="100" height="100">

<TR>

<TD><IMG SRC="../My Documents/My Pictures/Sunttt.jpg" WIDTH="40" HEIGHT="60" BORDER="0" ALT=""></TD>

</TR>

</TABLE>

各位:

</TD>

</TR>

</TABLE>

</FORM>

</body>

</html>

你好换行,可以直接使用<br>或<P>

比如:

<td>111111111<br>22222222222</td>

<td><p>111111111</p><p>22222222222</p></td>

以上两种方式都可以。