即時通訊在我的網站的某些元素上有邊界和半徑樣式(邊框半徑)問題,我想擺脫它們,因爲它看起來不太好。請看下面的圖片:firefox border white line
,你可以在頭部分看,它已設置使用CSS3是一隻骯髒的白線是搞亂我的漂亮的頭球是在曲線邊界所以我想知道是否有是一種擺脫它的方法,或者保持它像一個乾淨的邊界(沒有在標題曲線左下角的白色混亂),在右邊的標題底部邊界曲線/半徑上相同。
繼承人我的頭的HTML結構:
<header id="header" role="banner">
<span class="extend clear">
</span>
</header>
和它的CSS。
#header{
background: #575656;
overflow: auto;
border: 1px solid #454545;
background-color: #575656;
background-image: -webkit-gradient(linear, left top, left bottom, from(#333333), to(#575656));
background-image: -webkit-linear-gradient(top, #333333, #575656);
background-image: -moz-linear-gradient(top, #333333, #575656);
background-image: -ms-linear-gradient(top, #333333, #575656);
background-image: -o-linear-gradient(top, #333333, #575656);
background-image: linear-gradient(top, #333333, #575656);
-pie-background: linear-gradient(to bottom, #333333, #575656); /*ie 6-9 via PIE*/
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#333333, endColorstr=#575656);
-webkit-border-bottom-right-radius: 8px;
-webkit-border-bottom-left-radius: 8px;
-moz-border-radius-bottomright: 8px;
-moz-border-radius-bottomleft: 8px;
border-bottom-right-radius: 8px;
border-bottom-left-radius: 8px;
behavior: url(PIE.htc);
}
#header span{
padding: 20px 15px;
border-bottom: 1px solid #838181;
overflow: auto;
display: block;
}
和餡餅的事情出現了以IE顯示,繼承人它http://css3pie.com/
謝謝,即時通信開放的任何想法,建議和意見的鏈接。
我改變了語法,但還是一樣 –
'-moz-邊框右下角,radius'&'-moz-border-左下角半徑「也無效......請嘗試應用它們並查看。 – loxxy
@loxxy在Firefox中? –