I need to give space or break between two rows, so that my page will looks good.
if you look my code i had given many empty rows and column to make a space between two rows in the table.
Please say any other proper way to give space between two rows.
here is my sample code:
<form:form name="form" method="post" modelAttribute="Abatch">
 <table>
<tr>
    <td>Please enter your comments</td>
    <td><form:textarea id="textarea" style="width:150%;height:150%" path="Comments" size="255" readonly="false" /></td>
</tr>
<tr>
<tr>
<tr><td></td></tr>
<tr><td></td></tr>
<tr><td></td></tr>
</tr>
</tr>
<tr>     
   <td><input id="button1"   type="submit" name="submit" value="Approve"/></td>
   <td><input id="button4"  type="submit" name="submit" value="Reject"/></td>
  </tr>
</table>