fuzzyfru1t
04-11-2004, 08:00 AM
is there a way to make links go like
T
H
I
S
instead of horizontal like THIS?
T
H
I
S
instead of horizontal like THIS?
|
View Full Version : making vertical links fuzzyfru1t 04-11-2004, 08:00 AM is there a way to make links go like T H I S instead of horizontal like THIS? salomeyasobko 04-11-2004, 08:13 AM you can use this: <style type="text/css"> <!-- a { writing-mode: tb-rl; filter: flipv fliph; } that will make all the links vertical. if you only want some links vertical, put this for each link you want vertical: <span style="writing-mode: tb-rl; filter: flipv fliph;"><a href="URL"> LINK TEXT GOES HERE </a></span> you can change flipv fliph to flipv flipv to change the direction of the flip. i just don't know exactly what you want it to look like. good luck :D fuzzyfru1t 04-11-2004, 08:26 AM thanks!!! salomeyasobko 04-11-2004, 08:32 AM you're welcome :) fuzzyfru1t 04-11-2004, 08:38 AM oooh i like that code you gave me. is there anyway to make the letters not turn to the right or left, but stay the same, and still have the link vertical? ahh, i dont know how to word it. |