CSS text align top to bottom question

Status
Not open for further replies.

Cormac

New Member
Hi guys, is it possible to run text on its side from top to bottom like so using CSS?

I tried to google about the place but I'm not sure on the search terms or even if it's possible.

Cheers.
 

Cormac

New Member
Cheers Louie, I'm trying to avoid using images. Unfortunately that code isn't cross platform.

Thanks nonetheless.
 

enzo

New Member
Someone linked to my site woo whooo!! :D

Yep, the css filters are IE only (unless something has changed since I last checked).

I'd be surprised if it couldn't be done with js but images would be my first choice.

Here's an example with js... not sure about x-browser compatibility tho:

Vertical text script- Developer's View
 

Gala

New Member
I doubt very much you'll be able to pull that one off with CSS that will satisfy all browsers. I wouldnt even be confident of doing it with JS. Why cant it be an image?
 

Cormac

New Member
I don't want to use an image for seo purposes. I was planning on using vertical text for a menu system.
It seems like my only option though...that or using flash.
 

Gala

New Member
^^ he beat me to it. the text wont show but search engines will still read it. if you do find that the text is coming to the front then use css such as:

divname img
{
z-index: 1;
}
 
Status
Not open for further replies.
Top