How to draw circle in HTML5 and CSS3

1 Answer

0 votes

  div.circle {
    border: 3px solid blue;
    border-radius: 50%;
    width: 120px; height: 120px;
  }

<div class=circle>
</div>


answered May 20, 2014 by avibootz

Related questions

1 answer 352 views
1 answer 419 views
1 answer 542 views
1 answer 307 views
2 answers 384 views
384 views asked May 27, 2016 by avibootz
...