Tag: CSS
Misc
Hey, there are so many cool light-weight CSS page load scripts that you can use on your websites or web applications. http://tobiasahlin.com/spinkit/
Misc
Add overflow: hidden to your body when you show the lightbox and overflow: auto when you hide it.
Misc
::-webkit-input-placeholder { /* Chrome/Opera/Safari / color: pink; } ::-moz-placeholder { / Firefox 19+ / color: pink; } :-ms-input-placeholder { / IE 10+ / color: pink; } :-moz-placeholder { / Firefox 18- */ color: pink; } More info...
Misc
10 Free Customizable CSS Snippets for Radio Toggles &...
Misc
Position Sticky Sticky positioning is a hybrid of relative and fixed positioning. The element is treated as relative positioned until it crosses a specified threshold, at which point it is treated as fixed positioned. Demo See the Pen Sticky positioning by Šime Vidas...