Need Help with Rotating a Table
I have a table with 3 cells and 3 rows. The middle cell crosses the 3 rows (i.e. rowspan=3). In that cell is a table that I want to rotate 90 degrees. It has one cell containing two lines of text. Here's the CSS I'm using:
Code:
#rotate {
-moz-transform: rotate(90.0deg); /* FF3.5+ */
-o-transform: rotate(90.0deg); /* Opera 10.5 */
-webkit-transform: rotate(90.0deg); /* Saf3.1+, Chrome */
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0.083); /* IE6,IE7 */
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0.083)"; /* IE8 */
and here's the table code:
Code:
<td rowspan=3 valign="top">
<table style="border-style:dashed" id="rotate">
<tr>
<td><u>TRAY CHECK-IN </u> Your Entrant No. will be assigned at Tray check-In. Please have your List of Entries and Tray Slips
<br>completely filled out with <b>exact</b> monies ($1.00 each slip)at time of check-in. Enjoy the Competition!
</td>
</tr>
</table>
</td>
The table rotates correctly, but doesn't expand to fill up the containing cell.
Can anyone tell me what to add to my CSS to have the table expand properly?
Thanks.