Create CSS Circle shape with border - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Shape

Description

Create CSS Circle shape with border

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">

.circle {<!--from   w w w  . j  a va 2s  . c  om-->
   border:1px solid red;
   background-color: #FFFFFF;
   height: 100px;
   border-radius: 50%;
   width: 100px;
}


      </style> 
 </head> 
 <body> 
  <div class="circle"></div>  
 </body>
</html>

Related Tutorials