2
以下代碼在桌面瀏覽器上正常工作。但是,當在android webview中應用時,似乎有一個額外的邊框。我應該如何處理這個問題的任何想法?不需要的邊框在:之前/:僞元素之後
.container{
width: 100px;
height: 50px;
background-color: #fff;
color: #000;
padding: 5px;
position: relative;
}
.container:before{
content: "";
border-left: 20px solid transparent;
border-bottom: 50px solid #fff;
position: absolute;
left: -20px;
top: 0;
}