簡體   English   中英

谷歌瀏覽器上的邊框。 (CSS) ¿如何刪除?

[英]Border on Google Chrome. (CSS) ¿How to remove?

我的頁面顯示了一個邊框而不是我沒有放置它(對不起我的英語);

谷歌瀏覽器[圖片]

Internet Explorer +10 [圖像]

這是我的 css 代碼

#mydiv {
    width:98px;
    height:98px;
    border-radius: 52%;
    border:solid 0px;
    position:absolute;
    top:-50px;
    left:85%;
}
#mydiv img {
    width:100px;
    height:100px;
    border-radius: 52%;
    border:solid 0px;
    z-index: -1;
}

復制並使用以下代碼替換您的代碼:

#mydiv {
width:98px;
height:98px;
border-radius: 52%;
border:none;
position:absolute;
top:-50px;
left:85%;
}
#mydiv img {
width:100px;
height:100px;
border-radius: 52%;
border:none;
z-index: -1;
}

它會解決你的問題,朋友。

您也可以只刪除邊框

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM