hjl1999
07-26-2011, 08:54 PM
after a absolute positioned image, how to set the following text position relative
<img src="logo.jpg" style="position:absolute; border:none; width: 312px; height: 28px; left:10%; margin-top:1em" alt="logo" />
command line follows as relative position immedaitely after this image
thank you for your advice.
Sammy12
07-26-2011, 09:16 PM
after a absolute positioned image, how to set the following text position relative
<img src="logo.jpg" style="position:absolute; border:none; width: 312px; height: 28px; left:10%; margin-top:1em" alt="logo" /></a>
test lines.
thank you for your advice.
?
you started with an img tag but ended with an a
vikram1vicky
07-27-2011, 01:38 PM
Share full code (means code of related elements)
hjl1999
07-27-2011, 06:31 PM
I have several absolute position images. I want to put some relatively position text lines immediately follows one particular image.
After I absolutely positioned all my images, how do I code so that css / html to relatively position all my following texts?
vikram1vicky
07-27-2011, 07:15 PM
I have several absolute position images. I want to put some relatively position text lines immediately follows one particular image.
After I absolutely positioned all my images, how do I code so that css / html to relatively position all my following texts?
Then you need to use floating instead of absolute positioning ...
hjl1999
07-27-2011, 10:19 PM
ok, if I am to use floating, how should I code the image positioning in OP?