Overflow

コンテンツ要素に overflow(オーバーフロー) を設定するには, これらの簡易ユーティリティを使用します。オーバーフロー ユーティリティの使い方の例を示します。

Barebones の overflow 機能はデフォルトで2つの値に対して提供されており, レスポンシブではありません。

This is an example of using .overflow-auto on an element with set width and height dimensions. By design, this content will vertically scroll.
This is an example of using .overflow-hidden on an element with set width and height dimensions.
<div class="overflow-auto">...</div>
<div class="overflow-hidden">...</div>

Sass変数を使って、 _variables.scss $ overflows 変数を変更することで overflow utilities をカスタマイズできます。

v4.5