I need to rotate text for column headings in a table. I've done so with SVG text, but am having formatting issues. I'd like the text to be "logically flush-left", which means with the -90 rotation, vertical-alignment: bottom, but it's always centered. Can you suggest anything?
My XHTML looks like this:
My td class looks like this:
Adding x= and y= settings to the text statement, or horizontal or vertical alignment to the css, doesn't seem to matter.
Any suggestions would be greatly appreciated.
David Smith
My XHTML looks like this:
<td class="s2res"><svg width=".15in" height=".75in"><g><text transform="rotate(-90)">3-7 days</text></g></svg></td>
My td class looks like this:
td.s2res { /*Responses for S2 table*/
width: .25in;
font: 9pt serif;
border: solid medium;
}
Adding x= and y= settings to the text statement, or horizontal or vertical alignment to the css, doesn't seem to matter.
Any suggestions would be greatly appreciated.
David Smith
David