pixelHeight, pixelWidth, posHeight, posWidth, heigh, width ¼Ó¼º ¿¹Á¦

¿©±â¸¦ Ŭ¸¯Çغ¸¶ó.
°á°ú Ç¥½Ãâ

ŸÀ̸ӷΠpixelHeight, pixelWidth ¼Ó¼ºÀ» »ç¿ëÇÏ¿© °ªÀ» Áõ°¡½ÃÄ×´Ù.

<SCRIPT>
function scaleThis(){
  if (divObj.style.pixelWidth <400){
    divObj.style.pixelWidth +=5;
    divObj.style.pixelHeight +=2;
    window.setTimeout('scaleThis();', 1);
  }
  str='divObj.style.pixelHeight='+divObj.style.pixelHeight+'<BR>';
  str+='divObj.style.pixelWidth='+divObj.style.pixelWidth+'<BR>';
  str+='divObj.style.posHeight='+divObj.style.posHeight+'<BR>';
  str+='divObj.style.posWdith='+divObj.style.posWidth+'<BR>';
  str+='divObj.style.height='+divObj.style.height+'<BR>';
  str+='divObj.style.wdith='+divObj.style.width+'<BR>';
  showA.innerHTML=str;
}
</SCRIPT>
<DIV id=divObj style="border:solid 1 red;background-color:ffe" onclick=scaleThis()>¿©±â¸¦ Ŭ¸¯Çغ¸¶ó.</DIV>
<DIV id=showA>°á°ú Ç¥½Ãâ</DIV>