Hi Oliver,

I think with the standard HTML table, the only way you can achieve
this is to use a CSS class such as this:

.myColumnClass {
  vertical-align: top;
}

then you can use it like this:

<h:dataTable ... columnClasses="myColumnClass">
  ...
</h:dataTable>

or

.myTable td {
  vertical-align: top;
}

and

<h:dataTable ... styleClass="myTable">
  ...
</h:dataTable>

Best regards,
Behi

On 12/20/06, Pfau, Oliver <[EMAIL PROTECTED]> wrote:


Hi,

I have a jsp layout made with panelgrid. How can I achieve something like
valign="top" of td-tag ?

Regards,
Oliver


--
"Science is a differential equation. Religion is a boundary condition"
- Alan Turing

Behrang Saeedzadeh
http://www.jroller.com/page/behrangsa
http://my.opera.com/behrangsa

Reply via email to