如何制作圆角的div
如何使 div 的边框角变成圆角?
How do you make a div so that its border corners are rounded?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何使 div 的边框角变成圆角?
How do you make a div so that its border corners are rounded?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(6)
这里是:
Here it is:
使用
border-radius
财产。指定的量越高(通常以px
为单位),形状就越圆。示例:希望有帮助。
Use the
border-radius
property. The higher the specified amount (typically inpx
), the more rounded your shape. Example:Hope that helps.
添加这个CSS:
add this css:
使用 CSS 添加代码:
border-radius: 10px
。例如,我使用 10px,但您可以尝试使用您喜欢的像素数量。
With CSS add the code:
border-radius: 10px
.I use 10px for example, but you can experiment with however amount of pixels you like.
如果您不想依赖像素,则可以随时使用 %
border-radius: 50%;
If you don't want to rely on pixels, you can always use %
border-radius: 50%;
只需使用
"border-radius"
css 属性,如下所示:Just use
"border-radius"
css property like this: