<div>高さを指定しない場合:スクロールできない</div>
<p class="sample1">ああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああ</p>
<div>高さを指定した場合:スクロールできる</div>
<p class="sample2">ああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああ</p>
.sample1{
width: 150px;
overflow: scroll;
background: yellowgreen;
}
.sample2{
width: 150px;
height: 85px;
overflow: scroll;
background: yellowgreen;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.