以下のじゅげむの文章を使ってoverflow
の使い方を解説します。
overflowの初期値はvisible
です。ハミ出た部分は、そのままハミ出た状態で表示されます。
See the Pen
overflow-visible by shiakisudev (@shiakisu)
on CodePen.
CSS
.sample {
width: 100px;
height: 100px;
overflow: visible;
background: green;
}
hidden
を指定すると、ハミ出た部分を非表示にします。
See the Pen
overflow-hidden by shiakisudev (@shiakisu)
on CodePen.
CSS
.sample {
width: 200px;
height: 200px;
overflow: hidden;
background: green;
}
scroll
を指定すると、ハミ出た部分を縦スクロールして表示できるようにします。
See the Pen
zYqoege by shiakisudev (@shiakisu)
on CodePen.
CSS
.sample {
width: 200px;
height: 200px;
overflow: scroll;
background: green;
}
横スクロールバーを消したいときはどうしたら良い?
overflow-y:scroll
で縦スクロールバーを表示し、overflow-x:hidden
で横スクロールバーを非表示にします。
See the Pen
overflow-scroll-y by shiakisudev (@shiakisu)
on CodePen.
CSS
.sample {
width: 200px;
height: 200px;
overflow-y: scroll;/* 縦スクロールバーを表示*/
overflow-x: hidden;/* 横スクロールバーは非表示に*/
background: green;
}
横スクロールさせたい場合はscroll
指定にプラスしてwhite-space:nowrap;
を追加します。これを追加することにより、改行せずに1行で表示するようになるため、結果として横スクロールすることになります。
See the Pen
overflow-scroll2 by shiakisudev (@shiakisu)
on CodePen.
CSS
.sample {
width: 200px;
height: 200px;
overflow: scroll;
white-space:nowrap;
background: green;
}
縦スクロールバーを消したいときはどうしたら良い?
overflow-x:scroll
で横スクロールバーを表示し、overflow-y:hidden
で縦スクロールバーを非表示にします。
See the Pen
overflow-scroll-x by shiakisudev (@shiakisu)
on CodePen.
CSS
.sample {
width: 200px;
height: 200px;
overflow-x: scroll;/* 横スクロールバーを表示*/
overflow-y: hidden;/* 縦スクロールバーは非表示に*/
white-space:nowrap;
background: green;
}
横スクロールバーは非表示になります。
See the Pen
overflow-auto by shiakisudev (@shiakisu)
on CodePen.
CSS
.sample {
width: 200px;
height: 200px;
overflow: auto;
background: green;
}
white-space:nowrap;
も一緒に指定することにより横スクロールになります。
この場合、縦スクロールバーは非表示になります。
See the Pen
overflow-auto2 by shiakisudev (@shiakisu)
on CodePen.
CSS
.sample {
width: 200px;
height: 200px;
overflow: auto;
white-space:nowrap;
background: green;
}
以上で記事の解説はお終い!
HTML、CSS、JavaScriptをもっと勉強したい方にはUdemyがオススメ!同僚に差をつけよう!