0 Replies Latest reply on Aug 23, 2007 3:05 AM by mikala

    rendering html table with 100% height in xhtml

    mikala

      I would like to render html table with 100% height:
      (this code is from plain html file and it is working on IE,Firefox)

      <table border="1" width="100%" height="100%">
       <tr>
       <td height="10">header</td>
       </tr>
       <tr >
       <td height="100%">body</td>
       </tr>
       <tr>
       <td height="10">footer</td>
       </tr>
      </table>
      

      I am useing xhtml facelets.
      Is it possible to generate it in faces?