Tell me how to implement the following I have a block that I shift to -405px on the hover. How to make it so that after the animation is executed, the block remains shifted to the same -405px
.seminar-info:hover { animation-duration: 3s; animation-name: seminar-info; } @keyframes seminar-info { from { left: 0px; } to { left: -405px; animation-fill-mode: forwards; }