私はこのようにBootstrap Affixを使用しています:
<div data-spy="affix" data-offset-top="220">
そして、接辞がトリガーされたときに位置を修正するために、このcssを追加します:
.affix {
position: fixed;
top: 20px;
z-index:1;
margin-left: auto ;
margin-right: auto ;
}
複数の Dom 要素で Affix を使用して、次のような別の css に影響を与えることは可能ですか?
<div data-spy="affix2" data-offset-top="220">
.affix2 {
position: fixed;
top: 50px;
z-index:1;
}