![]() | |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
Hi, We have a monitoring page on a specific computer where we need some differently sized images accurately positioned. Hence there is no compatibility issues. One computer, one browser. How do we place imageA.gif at x=500 Y=200? (from the upper left corner of the screen) At its native pixel size. Thanks for tips on this regards geir |
#3
| |||
| |||
|
|
Hi, We have a monitoring page on a specific computer where we need some differently sized images accurately positioned. Hence there is no compatibility issues. One computer, one browser. How do we place imageA.gif at x=500 Y=200? (from the upper left corner of the screen) At its native pixel size. Thanks for tips on this |
#4
| |||
| |||
|
|
"Geir" <geir02 (AT) gmail (DOT) com> wrote in message news:7ldgsnF3agu83U1 (AT) mid (DOT) individual.net... Hi, We have a monitoring page on a specific computer where we need some differently sized images accurately positioned. Hence there is no compatibility issues. One computer, one browser. How do we place imageA.gif at x=500 Y=200? (from the upper left corner of the screen) At its native pixel size. Thanks for tips on this !DOCTYPE HTML html head meta content="text/html; charset=utf-8" http-equiv="Content-Type" title>Position imageA</title style type="text/css" .imageA { position: absolute; left: 500px; top: 200px; } /style /head body img src="imageA.gif" class="imageA" alt="meaningful alt text" /body /html |
#5
| |||
| |||
|
|
On 2009-11-04, Nik Coughlin <nrkn.com (AT) gmail (DOT) com> wrote: "Geir" <geir02 (AT) gmail (DOT) com> wrote in message news:7ldgsnF3agu83U1 (AT) mid (DOT) individual.net... Hi, We have a monitoring page on a specific computer where we need some differently sized images accurately positioned. Hence there is no compatibility issues. One computer, one browser. How do we place imageA.gif at x=500 Y=200? (from the upper left corner of the screen) At its native pixel size. Thanks for tips on this !DOCTYPE HTML html head meta content="text/html; charset=utf-8" http-equiv="Content-Type" title>Position imageA</title style type="text/css" .imageA { position: absolute; left: 500px; top: 200px; } /style /head body img src="imageA.gif" class="imageA" alt="meaningful alt text" /body /html Yes, although this is invalid-- not supposed to have an IMG just inside BODY like that. Put a DIV around it. |
#6
| |||
| |||
|
|
"Ben C" <spamspam (AT) spam (DOT) eggs> wrote in message news:slrnhf6ge2.326.spamspam (AT) bowser (DOT) marioworld... On 2009-11-04, Nik Coughlin <nrkn.com (AT) gmail (DOT) com> wrote: !DOCTYPE HTML html head meta content="text/html; charset=utf-8" http-equiv="Content-Type" title>Position imageA</title style type="text/css" .imageA { position: absolute; left: 500px; top: 200px; } /style /head body img src="imageA.gif" class="imageA" alt="meaningful alt text" /body /html Yes, although this is invalid-- not supposed to have an IMG just inside BODY like that. Put a DIV around it. Nope, perfectly valid, look at the doctype. But your advice is good for the OP who is probably not authoring as HTML 5 ![]() |
#7
| |||
| |||
|
|
...Hence there is no compatibility issues. *One computer, one browser. How do we place imageA.gif at x=500 Y=200? (from the upper left corner of the screen) *At its native pixel size. |
#8
| |||
| |||
|
|
"Ben C" <spamspam (AT) spam (DOT) eggs> wrote in message news:slrnhf6ge2.326.spamspam (AT) bowser (DOT) marioworld... On 2009-11-04, Nik Coughlin <nrkn.com (AT) gmail (DOT) com> wrote: "Geir" <geir02 (AT) gmail (DOT) com> wrote in message news:7ldgsnF3agu83U1 (AT) mid (DOT) individual.net... Hi, We have a monitoring page on a specific computer where we need some differently sized images accurately positioned. Hence there is no compatibility issues. One computer, one browser. How do we place imageA.gif at x=500 Y=200? (from the upper left corner of the screen) At its native pixel size. Thanks for tips on this !DOCTYPE HTML html head meta content="text/html; charset=utf-8" http-equiv="Content-Type" title>Position imageA</title style type="text/css" .imageA { position: absolute; left: 500px; top: 200px; } /style /head body img src="imageA.gif" class="imageA" alt="meaningful alt text" /body /html Yes, although this is invalid-- not supposed to have an IMG just inside BODY like that. Put a DIV around it. Nope, perfectly valid, look at the doctype. But your advice is good for the OP who is probably not authoring as HTML 5 ![]() |
#9
| |||
| |||
|
|
On 2009-11-05, Nik Coughlin <nrkn.com (AT) gmail (DOT) com> wrote: !DOCTYPE HTML html> ... Yes, although this is invalid-- not supposed to have an IMG just inside BODY like that. Put a DIV around it. Nope, perfectly valid, look at the doctype. But your advice is good for the OP who is probably not authoring as HTML 5 ![]() I was curious about the doctype. So that's an HTML 5 doctype? |
![]() |
| Thread Tools | |
| Display Modes | |
| |