obtain round hover on "round" div - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Hover

Description

obtain round hover on "round" div

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
  <style id="compiled-css" type="text/css">
img {<!--   ww w  .  j  a v  a  2  s. c o  m-->
   width:351px;
   border:3px solid Chartreuse;
   -webkit-border-radius:176px;
   -moz-border-radius:176px;
   border-radius:176px;
}

img:hover {
   border-color:yellow;
}
</style> 
 </head> 
 <body> 
  <img src="https://www.java2s.com/style/demo/InternetExplorer.png" alt="">  
 </body>
</html>

Related Tutorials