Categories | Question details Back To List | ||
vertical-align on grid cell Hello, I would like to align vertically some cells of a grid and the "vertical-align:top" in cell style attribute does not produce any effect. Cell are still centered vertically. (I use the 'light" skin...if Could you give me a tip to change the vertical alignment ? Thanks PS I use the Pro Package. Answer posted by Support on Sep 30, 2008 08:50 The code above really doesn't work, it caused by side effect of inner logic, we will check how it can be fixed in next version. For now you can use class attribute <style type="text/css" media="screen"> .top_aligned{ vertical-align:top; } </style> .... <cell class="top_aligned">Some</cell> |