Quote:
Originally Posted by meadowlarkOR
My table converts OK except that the text within the table cells is vertically aligned to the middle. I want it to align to the top. I added some CSS code I thought would do that, below. The part I added is "vertical-align : top;". It made no difference. Any ideas for me?
|
In your css-rule you're setting "vertical-align" on the <p>-tag. But this just aligns every single paragraph within its box.
You should put it on the <td>-tag instead which styles the whole table cell:
Code:
td {vertical-align: top;}
HTH, Andreas