Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How do I emulate

<img align='top' src='huge_image.jpg'>
<span>I start at the top right corner of the image!</span>

in CSS?

Maybe it's embarrassingly simple, but I really don't know.

share|improve this question
never used align='top' - but doesn't align='left' do the same thing? – warren Nov 13 '09 at 0:00
Thanks everyone, vertical-align did it, it was that simple. I'm accepting the answer with the explanatory link. – Pekka 웃 Nov 13 '09 at 0:20

5 Answers

up vote 3 down vote accepted

It depends on the container of your elements. The vertical-align CSS property doesn't exactly map to the valign attribute. I recommend checking this link out for an explanation on how to achieve this with CSS. http://phrogz.net/CSS/vertical-align/index.html

share|improve this answer
Thanks everyone; accepting this answer because of the good link. – Pekka 웃 Nov 13 '09 at 0:20

float: left will position it such that the img element will be to the left of the span, but if you are wanting to replicate align="top" because of the vertical alignment issue (span at bottom right vs. top right), then try style="vertical-align: top;"

share|improve this answer

I think you're looking for the vertical-align CSS property.

<img style="vertical-align: top;" alt="blah" src="blah.jpg" />

Ideally you wouldn't just slap it directly on the <img> tag, but instead use a CSS class.

share|improve this answer

edit:

I think you want the span to be inline with the image. So display:inline should do move the span to the right.

and

vertical-align:text-top should move the image to the top.

share|improve this answer
<style="text/css">

.top_aligned_image {vertical-align: top; /* or text-top, I can't remember for sure which works better */}

</style>

<img class="top_aligned_image" src='huge_image.jpg' /><span>I start at the top right corner of the image!</span>

Should do it.

share|improve this answer
1  
Shouldn't that "top_aligned_image" rule have a "." in front? – Ralph Lavelle Nov 13 '09 at 0:15
...umm...yes. Yes, it should. Thanks for that =) (edited and amended) – David Thomas Nov 13 '09 at 0:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.