css - Cordova: Position:sticky invalid property value -


on https://myroutes.io/routes #stickybar , .navbar stickied top of page. exact same page on cordova marked invalid property.

what workaround? .navbar stickied @ top: 0px; , #stickybar @ top: 60px;

#stickybar {   position: -webkit-sticky;   position: -moz-sticky;   position: -ms-sticky;   position: -o-sticky;   position: sticky;   margin-top: 0px;   top: 60px;   z-index: 1000; } 

enter image description here


Comments

Popular posts from this blog

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -