LoginSignup
9
7

More than 5 years have passed since last update.

Affixプラグインでスクロール時に横幅が変わってしまう場合

Posted at

Bootstrap 3.0 で affix プラグインを使った場合に、下にスクロールしていくと横幅が急に小さくなってしまう事態に遭遇しました。

親要素にmin-heightを設定してみたものの上手くいかなかったので、jsでモンキーパッチ。

$(document).ready(function(){
  var $affix = $('*[data-spy="affix"]');
  $affix.width($affix.parent().width());
});

そのうち本体でfixされるんじゃないかと思うけど。

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