0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【css】横に少しだけズレが生じる時の直し方

Posted at

問題

全体コンテンツの高さが
・ファーストビューに収まらなかった時
・収まった時

横へ少しだけズレが生じる

原因

全体コンテンツの高さによって横ズレが生じる問題は、スクロールバーの有無
・スクロールバーが表示される時 → 右側にスペースが生まれ、ページの幅が縮む。
・スクロールバーが表示されない時 → 幅が変わらない。

解決策:overflow-y-scroll

「Tailwind」の「overflow-y-scroll」を「html or body」に適用すると、常にスクロールバーを表示するのでズレがなくなる。

<body class="overflow-y-scroll">
  <div class="container mx-auto">
    <!-- コンテンツ -->
  </div>
</body>
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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?