Link to home
Start Free TrialLog in
Avatar of hidrau
hidrauFlag for Brazil

asked on

How can I fix a div in a position and it can stay at the same place when I resize my windows?

Hello Guys

I have three DIVs:

First: It is a container that Allow me to center my second DIV in horizontal and vertical center.
In the middle of the second DIV I have another DIV and I want it to stay in the same place when I resize my window. How can I do that?

please, take a look at my code:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>

<style type="text/css"> 
body {
        font-size: 12px;
        font-family: arial, helvetica, sans-serif;
        color: #333;
}
p {
        margin: 1em;
}
.comments {
        background-color: #e3e3e3;
        border-top: 1px solid #ccc;
        border-bottom: 1px solid #ccc;
        padding: 2px;
}
 
#mydiv {
        position:absolute;
        top: 50%;
        left: 50%;
        width:800px;
        height:600px;
        margin-top: -300px; /*set to a negative number 1/2 of your height*/
        margin-left: -400px; /*set to a negative number 1/2 of your width*/
        border: 1px solid #ccc;
        background: #FFF; 
}
 
table {position: relative; height: 500px; top: 50%; margin-top: -250px;}

#apDiv1 {
	position:fixed;
	left:200px;
	top:341px;
	width:235px;
	height:172px;
	z-index:1;
	background:#0066CC;
	overflow:auto;
}

</style>
</head>
<body>
<div id='mlk' class='menu' style='position:absolute; top:-10000px; left:-10000px;'></div>
<div id="mydiv" align="center">
   <table width="700" border="0">
    <tr>
      <td height="450"><img src="Imagem/entrada_ht_link_1.jpg" width="700" height="450" /></td>
    </tr>
 </table>    
</div>
<div id="apDiv1"></div>
</body>
</html>

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of Paul MacDonald
Paul MacDonald
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of hidrau

ASKER

thanks