You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
518 B
CSS
22 lines
518 B
CSS
10 years ago
|
.fixedsticky {
|
||
|
position: -webkit-sticky;
|
||
|
position: -moz-sticky;
|
||
|
position: -ms-sticky;
|
||
|
position: -o-sticky;
|
||
|
position: sticky;
|
||
|
}
|
||
|
/* When position: sticky is supported but native behavior is ignored */
|
||
|
.fixedsticky-withoutfixedfixed .fixedsticky-off,
|
||
|
.fixed-supported .fixedsticky-off {
|
||
|
position: static;
|
||
|
}
|
||
|
.fixedsticky-withoutfixedfixed .fixedsticky-on,
|
||
|
.fixed-supported .fixedsticky-on {
|
||
|
position: fixed;
|
||
|
}
|
||
|
.fixedsticky-dummy {
|
||
|
display: none;
|
||
|
}
|
||
|
.fixedsticky-on + .fixedsticky-dummy {
|
||
|
display: block;
|
||
|
}
|