screen.deviceXDPI

書式

screen.deviceXDPI

説明

モニタ画面の横方向の解像度を示します。通常Macintoshでは72dpi、Windowsでは96dpiになります。このプロパティはWindows版Internet Explorer 6以降で利用できます。

サンプルコード [実行]

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<title>Sample</title>
</head>
<body>
<script type="text/javascript"><!--
document.write(screen.deviceXDPI);
// --></script>
</body>
</html>