我似乎無法擺脫這個圈子上半部分的薄白色輪廓。任何想法如何解決它? JSFiddle Demo如何擺脫這個圓圈上半部分的薄白色輪廓?
body {
background-color: black;
padding:50px;
}
.square {
background-color: white;
margin-bottom: 20px;
height: 200px;
\t \t width: 200px;
\t \t overflow: hidden;
\t \t }
.halfSquare {
\t \t background-color: #462a04;
\t \t height: 100px;
\t \t width: 200px;
\t \t }
.circle {
\t background-color: white;
\t \t height: 200px;
\t \t width: 200px;
\t \t border-radius: 50%;
\t \t overflow: hidden;
\t \t }
.halfCircle {
\t \t background-color: #462a04;
\t \t height: 100px;
\t \t width: 200px;
\t \t }
<body>
<div class="square"><div class="halfSquare"></div></div>
<div class="circle"><div class="halfCircle"></div></div> \t
</body>
伊莫你不能,如果你建立這種方式。白色像素點應該是這樣的點,其中「棕色像素」至少會出現在容器盒外(小於一個像素)。因此它會溢出並且溢出被隱藏。所以瀏覽器改爲顯示容器。 – delbertooo