Web Hoverable Button 40
Run
HTML
Hoverable Button
Button
CSS
.hoverable-button{ width:150px; height: 50px; outline:none; background:navy; color:#fff; margin-top: 100px; border:none; border-radius: 5px; font-size: 1.2em; transition: 0.2s; } .hoverable-button:hover { width: 155px; height: 55px; border-top-left-radius: 25px; border-top-right-radius: 0; border-bottom-left-radius: 0; border-bottom-right-radius: 25px; border-left: 5px solid deeppink; border-right: 5px solid deeppink; }
Follow Us