The Forum has been Updated
The code has been upgraded to the latest .NET core version. Please check instructions in the Community Announcements about migrating your account.
My searches have not yielded the results I am looking for.
I want to split a subject line to read vertically instead of horizontally.
Does anyone know how to do this?
Thanks all!
Etymon
<
I want to split a subject line to read vertically instead of horizontally.
Does anyone know how to do this?
Thanks all!
Etymon
<
نوشته شده در
Something like this?
http://www.ssi-developer.net/css/vertical-text.shtml<
http://www.ssi-developer.net/css/vertical-text.shtml<
نوشته شده در
Originally posted by JJenson
Something like this?
http://www.ssi-developer.net/css/vertical-text.shtml
Thanks for the reply, Jeff.
That's along the lines of what I wanted, except I was looking for this:
V
e
r
t
i
c
a
l
Here's an additional reference that goes into great detail about the possible future of that aspect of CSS (http://fantasai.inkedblade.net/style/discuss/vertical-text)
<
آخرین ویرایش توسط
نوشته شده در
i use this in a numbers pool script I have. I changed the variable names to make it a little more clear.
<edit> Removed some unneccesary breaks<
Code:
Dim strToVert 'Text to turn vertical
Dim iCnt 'Count the letters
Dim strVert 'Resulting vertical text
Dim i ' The counter
strToVert = "Vertical"
iCnt = Len(strToVert)
strVert = ""
for i = 1 to iCnt
strVert = strVert & " " & Mid(strToVert,i,1) & " "
if i < iCnt then strVert = strVert & "<br />"
next
Response.Write strVert<edit> Removed some unneccesary breaks<
_-/Cripto9t\-_
آخرین ویرایش توسط
نوشته شده در
Thanks Shaggy! I was able to do that for static text, but I also needed the vertical text to work with variables.
Thanks cripto9t! That's cleaner than what I came up with! My version does same thing, but yours is much quieter.
The following made the characters align straighter for my needs:
'#### BEGIN Vertical Text MOD by cripto9t ####''#### END Vertical Text MOD by cripto9t ####'
<
Thanks cripto9t! That's cleaner than what I came up with! My version does same thing, but yours is much quieter.
The following made the characters align straighter for my needs:
'#### BEGIN Vertical Text MOD by cripto9t ####'
Code:
Dim strToVert 'Text to turn vertical
Dim iCnt 'Count the letters
Dim strVert 'Resulting vertical text
Dim i 'The counter
strToVert = "Vertical"
iCnt = Len(strToVert)
strVert = ""
for i = 1 to iCnt
strVert = strVert & Mid(strToVert,i,1)
if i < iCnt then strVert = strVert & "<br />"
next
Response.Write strVert<
نوشته شده در
Glad I could help
. I use it in a table cell that spans multiple rows, so...
...centers it just fine. I think I added the spaces to make the cell wider.<
Code:
<td style="text-align;center" rowspan="10"> _-/Cripto9t\-_
نوشته شده در
Originally posted by cripto9t
Glad I could help. I use it in a table cell that spans multiple rows, so...
Code:...centers it just fine. I think I added the spaces to make the cell wider.<td style="text-align;center" rowspan="10">
Ah! That makes sense then.
My table data was only about 25 pixels wide.<
Email Member
Message Member
Post Moderation
بارگزاری فایل
If you're having problems uploading, try choosing a smaller image.
پیشنمایش مطلب
Send Topic
Loading...
