LoginSignup
0
1

More than 3 years have passed since last update.

overflow hiddenについて

Posted at

overflowとは

CSSのプロパティの1つで、要素のボックスからはみ出た部分をどう扱うかを指定する。

visible:初期値。はみ出た部分がはみ出たままの状態で表示される場合がある。
hidden :はみ出た部分が隠れる。
scroll :はみ出た部分が隠れてスクロールできる状態になる。
auto :ブラウザにより表示が変わる(基本的にはスクロールできる状態に)。

hidden

要素のボックスからはみ出てしまった部分を非表示にする。

<!-- html -->
<p class="menu">あいうえおあいうえおあいうえお</p>

/* css */
.menu {
    width: 50px;
    height: 50px;
    overflow: hidden;
    background: rgb(242, 173, 173);
}

スクリーンショット 2020-11-24 9.13.57.png

参考元はこちら
(https://saruwakakun.com/html-css/basic/overflow)

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1