document.writeln("브라우저의 전체 높이",screen.availHeight); //(해상도 설정된 최대 높이 - 퀵런치)
document.writeln("브라우저의 전체 너비",screen.availWidth); //(해상도  설정된 최대 너비 - 퀵런치)

document.writeln("모니터의 해상도 높이 ",screen.height); //해상도  설정된 최대 높이
document.writeln("모니터의 해상도 너비 ",screen.width);//해상도  설정된 최대 너비

document.writeln("브라우저 안쪽의 높이 ",document.body.clientHeight); // 떠 있는 브라우저 현재 안쪽의 높이
document.writeln("브라우저 안쪽의 너비 ",document.body.clientWidth); // 떠 있는 브라우저 현재 안쪽 너비

Posted by 달팽이맛나
,