使用border-radius
比元素尺寸大得多的 a 有什么问题吗?
例如,如果我想像这样创建一个类.circle
:
.circle {
-webkit-border-radius: 1000px;
-moz-border-radius: 1000px;
border-radius: 1000px;
}
所以现在我可以将这个类应用于任何元素以使其成为一个圆圈,如下所示:
<img width="80" height="80" alt="My Gravatar" class="circle" src="https://www.gravatar.com/avatar/b262eb4b3bf006cf68ef60eae63ddffc">
我知道到目前为止我还没有遇到任何问题,但我只是在为未来的更多问题做好准备吗?