Skip to content

Category: CSS

CSS: Disable CSS Animations

below css code, to disable any related to css animation /*CSS transitions*/ -o-transition-property: none !important; -moz-transition-property: none !important; -ms-transition-property: none !important; -webkit-transition-property: none !important; transition-property: none…

Continue reading CSS: Disable CSS Animations

Comments closed

CSS: Styling Scroll Bar

let say you want to styling overflow div bar, here example css .yourdiv::-webkit-scrollbar { background:red; width:5px; } .yourdiv::-webkit-scrollbar-track { background-color: #eaeaea; border-left: 1px solid #ccc;…

Continue reading CSS: Styling Scroll Bar

Comments closed