web123456

CSS Div mouse hover, card floating effect

.item { width: 100px; height: 100px; background: #222; -webkit-transition: all 250ms cubic-bezier(0.02, 0.01, 0.47, 1); transition: all 250ms cubic-bezier(0.02, 0.01, 0.47, 1); } .item:hover { // box-shadow: 0 16px 32px 0 rgba(48, 55, 66, 0.15); transform: translate(0, -3px); transition-delay: 0s !important; }