08/10/18 04:27:39 YWHsO6hd
>>760
もう遅いかな?
<html>
<head>
<title>スクロールバー</title>
<style type="text/css">
.infobox {
overflow:scroll;
width:200px;
height:100px;
border:red 1px dashed;
}
.infobox p {
min-width:200px;
}
*html .infobox p { /* IE6 */
width:210px;
}
</style>
</head>
<body>
<div class="infobox">
<p>長い文章。長い文章。長い文章。長い文章。長い文章。長い文章。長い文章。長い文章。長い文章。長い文章。長い文章。長い文章。</p>
<p>この部分の幅は適当に表示させたい幅にする。</p>
</div>
</body>
</html>