LoginSignup
1
1

More than 3 years have passed since last update.

React Bootstrapで右に出る余白なんやねん

Last updated at Posted at 2021-01-21

ご無沙汰してます、おおのんです。
今日はBootstrapに関すること。(あんまりReact関係ない)

右に余白がいてはる

とある日、Bootstrapを使って画面を作っていました。
レスポンシブ対応でスマホ画面サイズで見てみると、右に余白が!!!

無題.png

どこが悪さしてるのか見てみると・・・

無題.png

ここだった。

本来指定した領域をはみ出して表示しちゃってますので、overflow: hiddenしてみる。

index.js
..省略..
  return (
    <div className="overflow-hidden">
      <Carousel />
      <Row className="justify-content-center" md={10}>
..省略..

すると・・・!

無題.png

余白を消し去ることに成功しました。

1
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
1
1