鍍金池/ 問答/HTML/ mac下css實現(xiàn)切角效果,顯示不正常

mac下css實現(xiàn)切角效果,顯示不正常

mac下切角效果,顯示不正常,代碼如下所示,麻煩各位幫忙看看

.corners {
    width: 120px; height: 120px; margin: 40px 30px;
    background: #fb3;
    background: radial-gradient(circle at top left, transparent 15px, #fb3 0) top left,
                radial-gradient(circle at top right, transparent 15px, #fb3 0) top right,
                radial-gradient(circle at bottom right, transparent 15px, #fb3 0) bottom right,
                radial-gradient(circle at bottom left, transparent 15px, #fb3 0) bottom left;
    background-size: 50% 50%;
    background-repeat: no-repeat;
}
<div class="corners"></div>

clipboard.png

回答
編輯回答
涼心人

我copy了你的代碼在非mac機上試的效果,切的角沒什么問題,就是中間和你的不一樣圖片描述

2017年7月20日 11:51