Tables in HTML won't wrap?

Michael

New member
I have this code
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<link href="header.css" rel="stylesheet" type="text/css" />
</head>

<body topmargin="0" leftmargin="0" rightmargin="0">
<center>
<table width="100%" height="20" border="0" cellspacing="0" cellpadding="0">
<tr>
<td> </td>
</tr>
</table>
<div id="Header">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="middle"><img src="images/Index_02.jpg" alt="Title" width="760" height="111" align="middle" /></td>
</tr>
</table></div>
<div id="Navigation">
<table width="70%" border="0" cellspacing="0" cellpadding="0" bgcolor="caa769">
<tr>
<td><img src="images/Index_03.jpg" width="261" height="44" alt="Button1" /></td>
<td rowspan="6" align="right"><img src="images/Index_04.jpg" alt="Image1" width="499" height="263" align="middle" /></td>
</tr>
<tr>
<td><img src="images/Index_05.jpg" width="261" height="44" alt="Button2" /></td>

</tr>
<tr>
<td><img src="images/Index_06.jpg" width="261" height="44" alt="Button3" /></td>

</tr>
<tr>
<td><img src="images/Index_07.jpg" width="261" height="44" alt="button4" /></td>

</tr>
<tr>
<td><img src="images/Index_07.jpg" width="261" height="44" alt="button7" /></td>

</tr>
<tr>
<td><img src="images/Index_05.jpg" width="261" height="43" alt="Buttn6" /></td>
</tr>
</table>
</div>
<table width="70%" border="0" cellspacing="0" cellpadding="0" align="center" height="390">
<tr>
<td background="images/leftborderbg.jpg" width="15%"><img src="images/Index_10.jpg" width="106" height="390" alt="Side" /></td>
<td valign="top" nowrap="nowrap" background="images/bodybg.jpg"><p>I am trying to make this cell wrap with text but it is not working and I don't know why. yup, it definitely doesn't work.</p></td>
<td align="right"background="images/bodybg.jpg" width="15%"><img src="images/Index_12.jpg" width="113" height="390" alt="Side2" /></td>
</tr>
</table>


</center>
</body>
</html>
that I wrote and the cell "I am trying to make this cell wrap with text but it is not working and I don't know why. yup, it definitely doesn't work" is not wrapping and I don't know how to fix it. I have set widths but that doesn't help. I am building a website for my small business(not web design) that I am opening in January, so I would appreciate some help. I have Dreamweaver CS5.5 so you can also provide instructions as well if you want.
 
are you try with <br> tag:


<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<link href="header.css" rel="stylesheet" type="text/css" />
</head>

<body topmargin="0" leftmargin="0" rightmargin="0">
<center>
<table width="100%" height="20" border="0" cellspacing="0"

cellpadding="0">
<tr>
<td> </td>
</tr>
</table>
<div id="Header">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="middle"><img src="images/Index_02.jpg" alt="Title"

width="760" height="111" align="middle" /></td>
</tr>
</table></div>
<div id="Navigation">
<table width="70%" border="0" cellspacing="0" cellpadding="0"

bgcolor="caa769">
<tr>
<td><img src="images/Index_03.jpg" width="261" height="44"

alt="Button1" /></td>
<td rowspan="6" align="right"><img src="images/Index_04.jpg"

alt="Image1" width="499" height="263" align="middle" /></td>
</tr>
<tr>
<td><img src="images/Index_05.jpg" width="261" height="44"

alt="Button2" /></td>

</tr>
<tr>
<td><img src="images/Index_06.jpg" width="261" height="44"

alt="Button3" /></td>

</tr>
<tr>
<td><img src="images/Index_07.jpg" width="261" height="44"

alt="button4" /></td>

</tr>
<tr>
<td><img src="images/Index_07.jpg" width="261" height="44"

alt="button7" /></td>

</tr>
<tr>
<td><img src="images/Index_05.jpg" width="261" height="43" alt="Buttn6"

/></td>
</tr>
</table>
</div>
<table width="70%" border="0" cellspacing="0" cellpadding="0"

align="center" height="390">
<tr>
<td background="images/leftborderbg.jpg" width="15%"><img

src="images/Index_10.jpg" width="106" height="390" alt="Side" /></td>
<td valign="top" nowrap="nowrap" background="images/bodybg.jpg"><p>I am

trying to make this cell wrap with text <br>but it is not <br>working

and I don't know why. yup, it definitely doesn't work.</p>
<br>are you try with <br> tag -br-<br>tag -br-</td>
<td align="right"background="images/bodybg.jpg" width="15%"><img

src="images/Index_12.jpg" width="113" height="390" alt="Side2" /></td>
</tr>
</table>


</center>
</body>
</html>
 
Back
Top