CSS邊框半徑確實會影響按鈕呈現(我看它是圓形),但不會影響它與用戶交互的方式(我仍然可以在其邊框外單擊按鈕)。我應該如何解決它?按鈕邊框半徑和光標
我看到了Chrome中的行爲。
button
{
cursor: pointer;
outline: none;
background-size: 100% 100%;
background-color: red; /*transparent;*/ /* It's actually red and ROUND. */
background-position: center center;
background-repeat: no-repeat;
border: 0px;
-webkit-border-top-left-radius: 73px;
-webkit-border-top-right-radius: 73px;
-webkit-border-bottom-left-radius: 73px;
-webkit-border-bottom-right-radius: 73px;
width: 146px; height: 146px;
background-image: url('leftarrow.png');
}
問候,
我試圖避免在角落的指針光標。將附上截圖。 – noober 2012-03-18 17:57:00