circle shaped animate on hover effect in css
<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
.myborder {
width: 100px;
height: 100px;
background: lightgreen;
transition: all .5s;
-webkit-transition: all .5s;
-moz-transition: all .5s;
}
.myborder:hover {
border-radius: 50%;
border: 2px solid darkblue;
}
</style>
</head>
<body>
<div class="myborder"></div>
</body>
</html>
Comments
Post a Comment