Background smooth fade-in hover effect
Adding a short transition makes the color change feel more natural, less jarring.
css
.item {transition: background 0.15s ease-in-out;}.item:hover {background: #f6f6f6;}
Adding a short transition makes the color change feel more natural, less jarring.
.item {transition: background 0.15s ease-in-out;}.item:hover {background: #f6f6f6;}