Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Float: Right and stuff

Status
Not open for further replies.

Bravogolf

Programmer
Nov 29, 2002
204
GB
Hi all,
I have an article at that used to use tables to position the images to the right of the text (you know, text on the left, images on the right). Now i've used a DIV element for the images which uses the following attributes
Code:
float: right;

But if you look at the page on a high resolution, it's all skwered and I've no idea why? Any suggestions?
 

If you were to add the following CSS, it might make the page behave more as you expect:

Code:
clear:both;

Cheers,
Jeff

 
Great, thanks. I guess I have to wrap each paragraph that contains both the text and image with a DIV tag and that attribute? Cheers for your help :)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top