I'm using Bootstrap Affix like this :
<div data-spy="affix" data-offset-top="220">
And i add this css for fix the position when affix is triggered :
.affix {
position: fixed;
top: 20px;
z-index:1;
margin-left: auto ;
margin-right: auto ;
}
Is it possible to use the Affix on several Dom element and affect a different css, something like this :
<div data-spy="affix2" data-offset-top="220">
.affix2 {
position: fixed;
top: 50px;
z-index:1;
}