HTML/CSS/CSS Attributes and Javascript Style Properties/position

Материал из Web эксперт
Перейти к: навигация, поиск

"position" Example

    
<head>
<script language="JavaScript">
    function function1(){
        myDiv.style.position = "absolute"; 
    }
</script>
</head>
<body>
<br>
<br>
<br>
<br>
<br>
<div id="myDiv" 
     style="background-color:#EEEEEE; 
            width:200; 
            cursor:hand" 
     onclick="function1()">
     Click Here to set the position to "absolute".
</div>
</body>