Sep 10, 2001 #1 raji96 Programmer Joined Aug 7, 2001 Messages 64 Location US How do i display my header in a vertical position,since my header names are more than 30 characters,the page scrolls very extensively. Is there any way to display the header vertically?
How do i display my header in a vertical position,since my header names are more than 30 characters,the page scrolls very extensively. Is there any way to display the header vertically?
Sep 11, 2001 #2 Boomerang Programmer Joined Mar 30, 2001 Messages 766 Location NL Hi raji96, Here is an answer I found once on this forum (I keep important answers in my own documentation). I hope this is what you mean: If you're just supporting IE something like this will work: Code: <html> <head> <style> #whatever { position: absolute; left: 10px; top: 10px; writing-mode: tb-rl; filter: flipv fliph; } </style> </head> <body> <div id="whatever">Test</div> </body> </html> Hope this helps, Erik Upvote 0 Downvote
Hi raji96, Here is an answer I found once on this forum (I keep important answers in my own documentation). I hope this is what you mean: If you're just supporting IE something like this will work: Code: <html> <head> <style> #whatever { position: absolute; left: 10px; top: 10px; writing-mode: tb-rl; filter: flipv fliph; } </style> </head> <body> <div id="whatever">Test</div> </body> </html> Hope this helps, Erik
Sep 12, 2001 Thread starter #3 raji96 Programmer Joined Aug 7, 2001 Messages 64 Location US I what my header like this T E S T instead of TEST. How can i do it. Upvote 0 Downvote
Sep 12, 2001 #4 Wullie Programmer Joined Mar 17, 2001 Messages 3,674 Location GB Why not put the text in a table? Wullie http://www.survivorhelp.co.uk Upvote 0 Downvote
Sep 12, 2001 #5 tsdragon Programmer Joined Dec 18, 2000 Messages 5,133 Location US If your headers are in table cells, you can force them to wrap like that by putting <br> after each character. Tracy Dryden tracy@bydisn.com http://www.bydisn.com Meddle not in the affairs of dragons, For you are crunchy, and good with mustard. Upvote 0 Downvote
If your headers are in table cells, you can force them to wrap like that by putting <br> after each character. Tracy Dryden tracy@bydisn.com http://www.bydisn.com Meddle not in the affairs of dragons, For you are crunchy, and good with mustard.