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

More than 5 years have passed since last update.

Window縮小時にDropdownの表示がずれる(bootstrap4)

Last updated at Posted at 2019-04-08

画面が小さい状態でドロップダウンを表示するとメニューの位置がずれてしまう...

<div class="dropdown">
  <button class="dropdown-toggle" type="button" 
          data-reference="dropdown-toggle" data-toggle="dropdown" 
          aria-haspopup="true" aria-expanded="false">Submit
  </button>
  <div class="dropdown-menu dropdown-menu-right"></div>
</div>

解決

Note when boundary is set to any value other than 'scrollParent', the style position: static is applied to the .dropdown container.
Dropdowns Bootstrap

data-display="static"で動的な表示位置の変更を止める
メニューにmargin等を設定して位置を微修正👍

<div class="dropdown">
  <button class="dropdown-toggle" type="button" 
          data-reference="dropdown-toggle" data-toggle="dropdown" data-display="static" 
          aria-haspopup="true" aria-expanded="false">Submit
  </button>
  <div class="dropdown-menu dropdown-menu-right mt-3"></div>
</div>
1
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
1
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?