0
在我的網站上,我想顯示個人資料圖片是在一個特定區域的圓形狀。在我的文件夾中它是在矩形頁面。對於我使用下面的樣式,但不是不工作使用css的圖像遮罩
<div class="circle">
<img src="~/Content/Member/MemberPhotos/default_user_icon.jpg"/></div>
</div>
試圖用一個形狀像
.circle {
width:100px;height:100px;
overflow: hidden;
-webkit-mask-image: url(crop.png);
}
掩蓋,也嘗試了下面的CSS
.circle {
width:100px;
height:100px;
border-radius: 50px;
background-color:#000;
clip: rect(0px,50px,100px,0px);
}
兩者都沒有被屏蔽。任何人請幫助我
將'overflow:hidden'添加到'.circle'(第二個)。 – putvande