screenオブジェクトのwidthプロパティは、スクリーンの幅を返します。
読み取り専用であり、値の設定や変更はできません。
<script> document.write("スクリーンの幅:" + screen.width + "ピクセル<br>"); document.write("スクリーンの高さ:" + screen.height + "ピクセル<br>"); document.write("スクリーンの有効領域の幅:" + screen.availWidth + "ピクセル<br>"); document.write("スクリーンの有効領域の高さ:" + screen.availHeight + "ピクセル<br>"); document.write("スクリーンの色深度:" + screen.colorDepth + "ビット<br>"); document.write("スクリーンのビット深度:" + screen.pixelDepth + "ビット<br>"); </script>