Change Border Radius - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Border

Description

Change Border Radius

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">
a {<!--from www . j  a  v a 2 s . c om-->
   border:2px solid Chartreuse;
   padding:11px;
   -webkit-border-radius:11%;
   -moz-border-radius:11%;
   border-radius:11%;
}
</style> 
 </head> 
 <body> 
  <a href="http://google.com">abc</a> 
  <a href="http://en.wikipedia.org/">wikipedia</a>  
 </body>
</html>

Related Tutorials