LoginSignup
0
0

More than 3 years have passed since last update.

横スクロール

Posted at
  • ポイント
    • overflow-x
    • white-space:nowrap; ← これないとカラム落ちみたいになるから、横幅をオーバーできない

<!DOCTYPE html>
<html>
<head>
  <title>Horizontal Scroll</title>
  <style>

    .parent{
      overflow-x:scroll; overflow-y:hidden; width:50px; white-space:nowrap;
    }
    .child{
      display: inline-block;
    }
    .item {
      /* 横スクロール用 */
      display: inline-block;
      width: 90%;

      /* 見た目調整 */
      height: 400px;
      margin: 16px;
      font-size: 48px;
      background: rgba(255, 0, 0, 0.4);
    }

  </style>
</head>
<body>
  <div class="parent">
    <div class="child">
      aaa
    </div>
    <div class="child">
        aaa
    </div>
    <div class="child">
      aaa
    </div>

  </div>

</body>
</html>
0
0
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
0