0
我已經瀏覽了其他一些問題和答案,但仍無法在Safari(v 5.1.7)中使用此功能。Safari中的邊框半徑切割/圖像重疊
這裏是我的代碼 - jsfiddle
.services {
width: 218px;
float: left;
margin-right: 29px;
}
.services img {
border: solid 8px #ccc;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
}
.services a img:hover {
border: solid 8px #333;
-o-transition: all 1s ease 0s;
-ms-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
transition: all 1s ease 0s;
}
圖像是方形的218px X 218px,所以我guessin有什麼用它做的,但我希望它像這樣它看起來不夠體面在不支持邊界半徑的舊版瀏覽器中。
這可能很簡單,但我仍然堅持這一點。
謝謝。 Al。