How much markup is needed to safely use border-radius?
Hi,
I've been using the following code to create round containers for a while now.
.round {
width: 350px; height: 350px;
-moz-border-radius: 350px/350px;
-webkit-border-radius: 350px 350px;
-o-border-radius: 350px 350px;
border-radius: 350px/350px;
}
We used to have to do the same tricks w/ opacity to get it working on all major browsers; have we reached that level of compatibility with border-radius yet, or do I still need to bloat my code with redundant values this way every time I want to use a circle?
Thanks!
