'pixelTop' Example : pixelTop « CSS « HTML / CSS






'pixelTop' Example

    
<html>
<head>
<script language="JavaScript">
    function function1(){
        document.all.myDiv.style.pixelTop = 500;
    } 
</script>
</head>
<body>
<div id="myDiv" 
     style="background-color:#ccffcc; 
            position:absolute; 
            width:200;
            cursor:hand"; 
     onclick="function1()">
     Click this div element to send it to 500 px from the top.
</div>
</body>
</html>

    
      
      








Related examples in the same category