Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

drawing a circle with css

#it is the border-radius:50; that makes the circle.
.MyCircle{
  width:100px;
  height:100px;
  background-color:blue;
  border-radius:50px;
}
Source by css-tricks.com #
 
PREVIOUS NEXT
Tagged: #drawing #circle #css
ADD COMMENT
Topic
Name
6+8 =