I have a table with 3 columns - and would like to add the "overflow:auto;" to on of the columns.
Here is the example of the 3 columns
<HTML>
<HEAD>
<TITLE>test</TITLE>
<link rel="stylesheet" type="text/css" href="../css/style.css">
</HEAD>
<BODY>
<TABLE WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0">
<TR>
<TD WIDTH="40%" HEIGHT="100%" VALIGN="top" ID="colLeft">left</TD>
<TD WIDTH="40%" HEIGHT="100%" VALIGN="top" ID="colNormal">normal</TD>
<TD WIDTH="20%" HEIGHT="100%" VALIGN="top" ID="colRight">right</TD>
</TR>
</TABLE>
</BODY>
I don´t know if it possible to add autoflow, for example to the "right" column - which mean an scroll bar will appear, if the text does not fit to the page, while the 2 other columns still will be "freezed"
</HTML>