View Single Post
  #2 (permalink)  
Old Jul 12th, 2007, 12:42
hschmitz hschmitz is offline
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;
}
Reply With Quote