3
我正在嘗試使用針跡樣式設計半個圓的樣式。在Firefox中使用邊框半徑和邊框在圓上的針跡:虛線
但用我目前的代碼,它沒有得到在外面的虛線模式(我知道這是這樣做的border-radius
)。
Chrome正在產生正確的結果,但在Firefox,我得到以下結果:
我當前的代碼:
a#middle-left-circle{
display:block;
width: 90px;
height: 180px;
background: #117300;
border-radius: 0 180px 180px 0;
-moz-border-radius: 0 180px 180px 0;
-webkit-border-radius: 0 180px 180px 0;
border: 2px dashed #ffffff;
box-shadow: 0 0 0 4px #117300;
}
對我來說看起來很好,一定是你沒有發佈的一些CSS的問題:https://jsfiddle.net/Loy41h55/編輯:看起來它在Chrome中可用,但不是Firefox。 –
這是在Chrome –
@MaximillianLaumeister更正 – PrivatMamtora