How to place a new HTML on a specific place on the screen?

windows

Guest
Is it possible to start a new HTML somewhere else than as usual I mean bebinnning in the top left corner of the screen? Can I make it so that it starts form example top: 200 and left: 150?<!--content--><p style="position:absolute; top:200px; left:150px;">Some text<p><br />
Read up on the basics (<!-- m --><a class="postlink" href="http://www.w3schools.com/css/css_positioning.asp">http://www.w3schools.com/css/css_positioning.asp</a><!-- m -->) or the details (<!-- m --><a class="postlink" href="http://www.w3.org/TR/REC-CSS2/">http://www.w3.org/TR/REC-CSS2/</a><!-- m -->)<!--content-->Sorry, probably I'm not clear. With your suggestion the text or image can be positioned as you say but the HTMP itself still starts in the left top corner. I'm making a gallery with small pop-ups which are HTML's that can be started by the user. Now I don't know how to prevent them from all be positioned in the upper left corner. Is there a way to solve this problem?<!--content-->msgWindow = window.open('mypage.html','newWin','width=100,height=100,top=200,left=150');<!--content-->Great. Perfect!<br />
<br />
Kippie<!--content-->
 
Back
Top