クラスimportant
をページの右上隅に配置し、オーバーフローを制御する垂直スクロールバーを配置します。 important
の幅を変更すると何も行われないため、スクロールバーは現在表示されていますが、オーバーフローがないため何もしません。なぜこうなった?幅を調整しない
<div class="important">
<p>It's important to have some knowledge of CSS positioning. But
you will <em>not</em> be an expert after just a few simple examples!</p>
</div>
div.important {
position: absolute;
top: 0;
right: 0;
overflow-y: scroll;
width: 50 px;
}