【发布时间】:2022-11-10 16:20:32
【问题描述】:
border-radius css 命令似乎并不适用于所有角落。 html:
<img style="object-position: -200px -100px;"
id="wlimage"
<!--this is the image giving me problems--> src="https://www.worldatlas.com/r/w1200/upload/56/a1/a7/shutterstock-
424782349.jpg">
css
#wlimage {
border-radius: 30px;
width: 50%;
height: 50%;
}
【问题讨论】:
-
您的 HTML 代码无效,缺少很多结束标签
-
关于边界半径问题,这是由于您的
object-position: -200px -100px;设置,它隐藏了图像的主要部分。
标签: html css image rounded-corners border-radius