Img posiiton:absolute

S

Simon Wigzell

If I have this in my webpage:

<img src="Logo.jpg" style="position: absolute; z-index: 1">

Then I can drag the image around the screen in normal FP mode to position
it.

If I have this in my style sheet:

img
{
position: absolute;
z-index: 1;
}

Then I would expect all images to be draggable, but they aren't. FP ignores
the stylesheet setting for the image.

How come? Anything I can do about it? Trying to position images in tables is
an exercise in madness.

I don't see why I should have to manually set each image to use the
position:absolute property, that is what styles sheets are for. Any ideas?
 
S

Stefan B Rusynko

What would lead you to believe the selector img is supported by any version of CSS

Image alignment in tables is dependent on Image Properties and Cell properties



| If I have this in my webpage:
|
| <img src="Logo.jpg" style="position: absolute; z-index: 1">
|
| Then I can drag the image around the screen in normal FP mode to position
| it.
|
| If I have this in my style sheet:
|
| img
| {
| position: absolute;
| z-index: 1;
| }
|
| Then I would expect all images to be draggable, but they aren't. FP ignores
| the stylesheet setting for the image.
|
| How come? Anything I can do about it? Trying to position images in tables is
| an exercise in madness.
|
| I don't see why I should have to manually set each image to use the
| position:absolute property, that is what styles sheets are for. Any ideas?
|
|
|
 
Top