Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

vertical header

Status
Not open for further replies.

raji96

Programmer
Aug 7, 2001
64
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?
 
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=&quot;whatever&quot;>Test</div>
</body>
</html>

Hope this helps,

Erik
 
I what my header like this



T
E
S
T


instead of TEST.

How can i do it.
 
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

Meddle not in the affairs of dragons,
For you are crunchy, and good with mustard.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top