PDA

View Full Version : Aligning text to top right beside an image?


vcruiser
12-30-2007, 03:36 PM
How can I align text to the top right of an image. Now I have an image and the text starts on the bottom right. I want the text to start at the top and wrap around the image. Any help would be appreciated. Thanks

Freesteyelz
12-31-2007, 08:14 AM
If the text is in the same element as the image you can try:


<div style="textfloatr">Text...</div>



In Main CSS, Additional CSS Definitions:


.textfloatr {
float:right;
padding:3px 0 0 3px;
vertical-align:top;
}