コンテンツの幅を画面境界に制限する方法を教えてください。次のスクリプトでは、常に2px幅が画面(許容されるスペース)幅よりも広くなります。HR幅100%の問題
document.body.scrollWidthは常に2ピクセルの画面
私は問題は、ブラウザの時間を構築するために1つのピクセルの境界線を追加していることを信じ<html>
<head>
<style>
* {margin: 0; padding: 0}
</style>
<script type="text/javascript">
function test(){
alert(document.body.scrollWidth);
alert(document.getElementById("hrtest").scrollWidth);
alert(document.getElementById("divtest").scrollWidth);
alert(screen.width);
}
</script>
</head>
<body onLoad="test()">
<div id="divtest">
<hr size="2" width="100%" id="hrtest" />
</div>
</body>
</html>
なぜすべてで幅を指定? – Oded