Img posiiton:absolute

  • Thread starter Thread starter Simon Wigzell
  • Start date Start date
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?
 
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?
|
|
|
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top