window.sizeToContent

書式

sizeToContent()
window.sizeToContent()

説明

表示されている内容に合わせてウィンドウサイズを調整します。Firefoxで動作します。

サンプルコード [実行]

<!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>
<script type="text/javascript"><!--
window.onload = function() {
window.sizeToContent();
}
// --></script>
</head>
<body>
<img src="sky.jpg">
</body>
</html>