Select Page

Tag: CSS

Input ::placeholder Style

Input ::placeholder Style

::-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...
Position: Sticky – CSS

Position: Sticky – CSS

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...