I've added a table inside a table.

 <tr>
    <td colspan="10">
      <table border="2" cellpadding="1" cellspacing="1">
          <tr>
              <td>col1 </td>
              <td>col2</td>
          </tr>
          <tr >
              <td >TEST </td>
              <td >33444</td>
          </tr>
          <tr >
             <td >TEST</td>
             <td >9900</td>
          </tr>
      </table>
    </td>
 </tr>
But I want "TEST" values under col1 and numeric values under col2. Currently all values are shown under col1.
Edit - Actual Code
 <tr>
    <td colspan="10">
      <table class='<%= "table"+count%>' style="display:none" border="2" cellpadding="1" cellspacing="1">
          <tr>
              <td>col1 </td>
              <td>col2</td>
          </tr>
           <nested:iterate property="equipC" id="equipmentFormBean" indexId="ffIndex" >
          <tr class='<%= "table"+count%> dataOff' style="display:none">
            <td align="right" ><nested:write property="equipInitial" /> </td>
            <td ><nested:write property="equipNum" /> </td>
          </tr>
          </nested:iterate>
      </table>
    </td>
 </tr>
How to do it?
                        
Use Google chrome...Your html code is right.On my PC I see the values are in COL2.