Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to code more of my designs with HTML5 and CSS3 but I was curious to know what some do for their objects. I wanted to know how I can duplicate this image with all CSS, preferably within one class, if it can be done. What is the best way to go about doing this?

enter image description here

share|improve this question
can we move it or should I just create a new post there? – Matt_2.0 Feb 19 at 15:39

migrated from graphicdesign.stackexchange.com Feb 19 at 21:15

2 Answers

up vote 3 down vote accepted

This would be the css to get that effect:

div{
  width: 200px;
  height: 200px; 
  border: 2px dashed black;
  margin: 100px;
  border-radius: 50%;
  }
  div:after{
  content: ' ';
  display: block;
  margin: -10px;
    width: 215px;  height: 215px; 
  border: 2px dashed black;
  transform:rotate(16deg);
  border-radius: 50%;

  }
share|improve this answer

You should use an image for this. Either a gif, png or svg.

While it is technically possible with css by using border: dashed and a high border-radius I would not recommend it as different browsers implement dashed borders differently. There is no set w3 standard as to how browser rendering engines should render this. You would also need two divs and rotate one of them.

Notably Firefox and the android browser will totally fail to show this correctly. For example Firefox will show a solid line (not dashed) on rounded corners when using corner-radius.

I recently made a visual css builder which would show this quite quickly here - try playing with the different settings in different browsers.

share|improve this answer
so do people use a browser identifier to call the image or to call the code when designing objects/elements? – Matt_2.0 Feb 19 at 21:33
No. That would over complicate things. Just use an image for all cases then your code remains the same with no need for browser identification or hacks. – Tims Feb 19 at 22:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.