HTML CSS examples for CSS Widget:Shape
Create CSS Circle shape with border
<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>