オーバーフローを使用しています:下のコードのようにスクロールすると、テキストがなくてもスクロールバーが表示されます。
w3schoolsのデモ:http://www.w3schools.com/cssref/tryit.asp?filename=trycss_overflow あなたは水平(左または右)にスクロールできなくてもスクロールバーがあることがわかります。 to.hopeこれは私はあなたがoverflow: auto
を探していると思う感覚スクロールするものがない場合でもCSSのオーバーフロースクロールバーが表示されます
<style type="text/css">
div.scroll {
background-color: #00FFFF;
width: 100px;
height: 100px;
overflow: scroll;
}
</style>
<p>overflow:scroll</p>
<div class="scroll">You can use the overflow property when you want to have better control of the layout. The default value is visible.</div>
スクロールするものがないので、このデモでは無効になっていると思いますか? – antonpug