Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
wolfv #1
Is there a way to orient text vertically?
Is there a way to orient text vertically? (As in rotating normal text 90
degrees). I have an html table populated by narrow columns and need vertical
headings to fit inside the columns. Can coldfusion, html, or java script
orient text vertically?
Thank you
wolfv Guest
-
Align Text Vertically
I'm learning on v IN 1 tryout. I fear most of you larned on a CS version but anyway heres my question. I do NOT see a vertical alignment option... -
How to vertically centre text in Paragraph style
Thanks for the reply Dave... -
Datagrid - how to vertically center text in a cell
By default, the datagrid will display data in the vertical center of each cell, but when I apply the htmlCellRender all the data appears at the top... -
skewing text vertically on a path
I'm (still) using AI 8.1 and frequently put text on a curved path. This is no problem, but occasionally I want to skew the text vertically along the... -
Centering text vertically in a text block
I just bought Freehand MX 11 for Mac OS X and from using it back in the mid 1990s I could have sworn you could center text vertically in a text... -
kenji776 #2
Re: Is there a way to orient text vertically?
well, i don't have an exact answer for you, but what you could do is try to
break the title into an array, then loop through the array putting a breakline
after each iteration of the loop, therfor causing a verticle orientation. So
basic steps are
1) Get the whole word
2) Find a way to break the word down letter by letter
3) loop through the word breaking line after each iteration.
Sorry I can't be more exact cause i can't think of the exact functions im
looking for here, but either way maybe that helps a little, sorry if it
doesn't. Good luck man.
kenji776 Guest
-
mxstu #3
Re: Is there a way to orient text vertically?
The last time I checked, it could be done with CSS, but only worked in IE. A fall-back is resorting to the ugly <br> hack.
<table><tr><td>V<br>A<br>L<br>I<br>G<br>N</td></tr></table>
mxstu Guest
-
kenji776 #4
Re: Is there a way to orient text vertically?
yeah, the <br> way isn't pretty, but at least it works...
kenji776 Guest
-
mxstu #5
Re: Is there a way to orient text vertically?
Ooops, I didn't see your first response until after I posted.
True, but the output is consistent in other browsers. I guess we'll have to see what happens with CSS3.
mxstu Guest
-
wolfv #6
Re: Is there a way to orient text vertically?
Which CSS attribute orients text vertically? A CSS IE-only solution would be perfect. The page is for internal use, and my company uses IE.
Thank you for your responses.
wolfv Guest
-
mxstu #7
Re: Is there a way to orient text vertically?
It's "writing-mode" plus a filter. This link has an [url]http://www.ssi-developer.net/css/vertical-text.shtml[/url]. You can also google for "CSS vertical text" and there are many more.
HTH
mxstu Guest
-
wolfv #8
Re: Is there a way to orient text vertically?
Thank you mxstu. This writing-mode will work great.
wolfv Guest



Reply With Quote

