Align text vertically in a box

This is a discussion on "Align text vertically in a box" within the Web Page Design section. This forum, and the thread "Align text vertically in a box are both part of the Design Your Website category.


 Subscribe in a reader

Go Back   Webforumz.com > Main Forums > Design Your Website > Web Page Design

Notices




Reply
 
LinkBack Thread Tools
  #1  
Old Jul 12th, 2007, 10:06
New Member
Join Date: Jul 2007
Location: UK
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Align text vertically in a box

Hi,

I need to align some text in the bottom right corner of a box.

So far I've discovered that the vertical-align:text-bottom has to be inline. But it's not working!!!

Can anyone help please.

In my html doc I have the following:
Code: Select all
 
<div id= "box1" >
<span style= "vertical-align:text-bottom">My text</span>
</div>
In the stylesheet I have:
Code: Select all
 
#box1 {
 position: absolute;
 width: 125px;
 height: 100px;
 top:150px;
 left:100px;
 text-decoration: none;
 font-size: 0.96em;
 font-family: Arial, Helvetica, sans-serif;
 color:#1880B4;
 text-indent:60px;
 display:block;
 border-style:solid;
 border: 1px 1px 1px 1px;
 border-color:#980045;
 padding: 0px 0px 0px 0px;
 margin: 0px 0px 0px 0px;
 background-color:#FFFFFF;
}
Any help greatly appreciated.

Jo

Last edited by Lchad; Jul 12th, 2007 at 12:48. Reason: added code tags
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote

  #2  
Old Jul 12th, 2007, 12:42
Up'n'Coming Member
Join Date: Jun 2007
Location: Birmingham, UK
Posts: 54
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Align text vertically in a box

Quote:
Originally Posted by josoap View Post
So far I've discovered that the vertical-align:text-bottom has to be inline.
I don't see why that should make a difference.

Why not try

Code: Select all
<div id= "box1" >
<span id="textbox">My text</span>
</div>
and

Code: Select all
#textbox {
  position: absolute;
  right: 0px;
  bottom: 0px;
}
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #3  
Old Jul 12th, 2007, 12:49
Ryan Fait's Avatar
Elite Veteran
Join Date: May 2006
Location: Las Vegas
Posts: 3,787
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Align text vertically in a box

You'll need to add position: relative; to #box1 before hschmitz code will work
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #4  
Old Jul 12th, 2007, 17:29
Up'n'Coming Member
Join Date: Jun 2007
Location: Birmingham, UK
Posts: 54
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Align text vertically in a box

Quote:
Originally Posted by Ryan Fait View Post
You'll need to add position: relative; to #box1 before hschmitz code will work
I thought it would work with the original position:absolute; as well.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Reply

Tags
align, box, text, vertical

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 On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Drop down menu alignment problems. Div wont vertically align. Itsumishi Web Page Design 7 Mar 4th, 2008 04:57
vertically center text alexgeek Web Page Design 2 Aug 14th, 2007 12:47
Text-Align Marc Web Page Design 11 Jun 1st, 2007 07:22
Vertically aligning text at the bottom Donny Bahama Web Page Design 6 Apr 16th, 2007 02:44
cell won't align to top vertically CSpoon Web Page Design 12 Oct 4th, 2006 00:22


All times are GMT. The time now is 01:05.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42