正如您可能猜到的那样,img-circle 类创建了一个圆形图像。现在,当您尝试为该类添加边框时,它的行为很奇怪:它使图像变成正方形,并带有截止边缘。顺便说一句,它在 Firefox 和 Chrome 上运行良好。
请参阅附件以查看差异以及代码!
div#face-wrapper .face {
position: absolute;
z-index: 1;
border: 15px solid #e8e6e6;
}
.img-circle {
-webkit-border-radius: 500px;
-moz-border-radius: 500px;
border-radius: 500px;
}