Is there a problem using border-radius that is much larger than the size of the element?
For example, if I wanted to make a .circle class as follows:
.circle { -webkit-border-radius: 1000px; -moz-border-radius: 1000px; border-radius: 1000px; }
So now I can apply this class to any element to make it a circle, for example:
<img width="80" height="80" alt="My Gravatar" class="circle" src="https://www.gravatar.com/avatar/b262eb4b3bf006cf68ef60eae63ddffc">
I know that so far I have not encountered any problems, but am I just setting myself up for new problems in the future?
source share