Help | Site Map
Connecting Tech Pros Worldwide
 
 
LinkBack Thread Tools
  #1  
Old March 1st, 2007, 02:35 AM
flamer die.spam@hotmail.com
Guest
 
Posts: n/a
Default text direction

Anyone know of a way I can have text going from top to bottom but have
the letters still around the normal way as fi it were running from
left to right.. like:
t
h
i
s


I know how to do it tb-lr but not tb-tb

Flamer.

  #2  
Old March 1st, 2007, 03:05 AM
dorayme
Guest
 
Posts: n/a
Default Re: text direction

In article
<1172715756.773479.172690@t69g2000cwt.googlegroups .com>,
"flamer die.spam@hotmail.com" <die.spam@hotmail.comwrote:
Quote:
Anyone know of a way I can have text going from top to bottom but have
the letters still around the normal way as fi it were running from
left to right.. like:
t
h
i
s
Text is not something that has laws about it made in heaven, it
is not something pronounced upon in the bible or otherwise
something that is in a bubble of iron clad laws. In illustrator
it is dead easy to do what you want because there is a specific
tool dedicated to this. In MT-NewsWatcher, you would have more
chance of surviving a one story fall with some injury than find
an auto way to do this.

Can you narrow down your question to an app perhaps?

--
dorayme
  #3  
Old March 1st, 2007, 03:15 AM
dorayme
Guest
 
Posts: n/a
Default Re: text direction

In article
<doraymeRidThis-6BF27F.13534101032007@news-vip.optusnet.com.au>,
dorayme <doraymeRidThis@optusnet.com.auwrote:
Quote:
In article
<1172715756.773479.172690@t69g2000cwt.googlegroups .com>,
"flamer die.spam@hotmail.com" <die.spam@hotmail.comwrote:
>
Quote:
Anyone know of a way I can have text going from top to bottom but have
the letters still around the normal way as fi it were running from
left to right.. like:
t
h
i
s
>
Text is not something that has laws about it made in heaven, it
is not something pronounced upon in the bible or otherwise
something that is in a bubble of iron clad laws. In illustrator
it is dead easy to do what you want because there is a specific
tool dedicated to this. In MT-NewsWatcher, you would have more
chance of surviving a one story fall with some injury than find
an auto way to do this.
>
Can you narrow down your question to an app perhaps?
Sorry, wrong group, thought you were in another group about a
particular OS and its apps. Honest. I withdraw all of the above
and unreservedly apologise.

As penance I looked about and you could look at:

<http://www.cssplay.co.uk/menus/vertical.htmlas starter

--
dorayme
  #4  
Old March 1st, 2007, 07:25 AM
Jukka K. Korpela
Guest
 
Posts: n/a
Default Re: text direction

Scripsit die.spam@hotmail.com:
Quote:
Anyone know of a way I can have text going from top to bottom but have
the letters still around the normal way as fi it were running from
left to right.. like:
t
h
i
s
Not in CSS, but this is dead simple in HTML:
t<br>h<br>i<br>s

--
Jukka K. Korpela ("Yucca")
http://www.cs.tut.fi/~jkorpela/
  #5  
Old March 1st, 2007, 08:15 AM
Evertjan.
Guest
 
Posts: n/a
Default Re: text direction

Jukka K. Korpela wrote on 01 mrt 2007 in
comp.infosystems.www.authoring.stylesheets:
Quote:
Scripsit die.spam@hotmail.com:
>
Quote:
>Anyone know of a way I can have text going from top to bottom but have
>the letters still around the normal way as fi it were running from
>left to right.. like:
>t
>h
>i
>s
>
Not in CSS, but this is dead simple in HTML:
t<br>h<br>i<br>s
>
or javascript:

<script type='text/javascript'>

function vertical1(t){
return t.replace(/(.)/g,'$1<br>');
};

function vertical2(t){
return t.split('').join('<br>')+'<br>';
};

document.write (vertical1('This text'));
document.write ('<hr>');
document.write (vertical2('That text'));

</script>

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
  #6  
Old March 1st, 2007, 03:05 PM
Andreas Prilop
Guest
 
Posts: n/a
Default Re: text direction

On Thu, 1 Mar 2007, Jukka K. Korpela wrote:
Quote:
Not in CSS, but this is dead simple in HTML:
t<br>h<br>i<br>s
However, this is never recognized as a word ("this") by browsers
(double click on words!), search engines, etc. It is equivalent
to four separate letters ("t", "h", "i", "s"). In fact, search
engines seem to regard <brlike <p>, i.e. you cannot even
search for "t h i s".

In a similar fashion, "siht" is not recognized as the word "this"
whereas <bdo dir=rtl>this</bdois still the word "this"
even when displayed as "siht".

--
In memoriam Alan J. Flavell
http://groups.google.com/groups/sear...Alan.J.Flavell
  #7  
Old March 1st, 2007, 03:15 PM
Jukka K. Korpela
Guest
 
Posts: n/a
Default Re: text direction

Scripsit Evertjan.:
Quote:
Quote:
>Not in CSS, but this is dead simple in HTML:
>t<br>h<br>i<br>s
>
or javascript:
In this case, using JavaScript produces a more robust result, since the
content has "this" as a single word, for search engines and non-JavaScript
browsing.

There's also a tricky CSS way, which works on IE:

<div style="width: 1px; word-wrap: break-word">this</div>

(word-wrap: break-word means breaking strings at any point to make the
content fit into the defined with, and width: 1px prevents IE from trying to
put more than one character per line)

--
Jukka K. Korpela ("Yucca")
http://www.cs.tut.fi/~jkorpela/

  #8  
Old March 1st, 2007, 09:15 PM
dorayme
Guest
 
Posts: n/a
Default Re: text direction

In article <z%BFh.5638$gY7.3999@reader1.news.saunalahti.fi> ,
"Jukka K. Korpela" <jkorpela@cs.tut.fiwrote:
Quote:
There's also a tricky CSS way, which works on IE:
>
<div style="width: 1px; word-wrap: break-word">this</div>
And, oddly enough, in Safari (but no other Mac browsers I know of)

--
dorayme
 

Bookmarks

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

What is Bytes?

We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights. Get the best answers to your questions from over network members.
Post your question now . . .
It's fast and it's free

Popular Articles