'pixelHeight' Example : pixelHeight « CSS « HTML / CSS

HTML / CSS » CSS » pixelHeight 
'pixelHeight' Example

    
<head>
<script language="JavaScript">
    function function1(){
        myDiv.style.pixelHeight = 200 
    
</script>
</head>
<body>
<div id="myDiv" 
     style="background-color:#EEEEEE; 
            position:absolute; width:400; 
            cursor:hand"
     onmouseover="function1()" 
     onmouseout="this.style.pixelHeight=60">
     Move your mouse in and out to set the pixelHeight.
</div>
</body>

    
      
      
Related examples in the same category
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.