如何制作圆角的div

发布于 2024-11-30 08:53:21 字数 24 浏览 0 评论 0原文

如何使 div 的边框角变成圆角?

How do you make a div so that its border corners are rounded?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

欢烬 2024-12-07 08:53:21

这里是:

<style type="text/css">
div.test
{
    width: 115px;
    padding: 10px;
    border: 2px solid #000;
    border-radius: 15px;
    -moz-border-radius: 15px;
}
</style>
<div class="test">This is some text!</div>

Here it is:

<style type="text/css">
div.test
{
    width: 115px;
    padding: 10px;
    border: 2px solid #000;
    border-radius: 15px;
    -moz-border-radius: 15px;
}
</style>
<div class="test">This is some text!</div>
终遇你 2024-12-07 08:53:21

使用 border-radius 财产。指定的量越高(通常以 px 为单位),形状就越圆。示例:

myDiv { border-radius:30px;}

希望有帮助。

Use the border-radius property. The higher the specified amount (typically in px), the more rounded your shape. Example:

myDiv { border-radius:30px;}

Hope that helps.

分开我的手 2024-12-07 08:53:21

添加这个CSS:

border-top-right-radius:15px;
border-top-left-radius:15px;
border-bottom-right-radius:15px;
border-bottom-left-radius:15px;

add this css:

border-top-right-radius:15px;
border-top-left-radius:15px;
border-bottom-right-radius:15px;
border-bottom-left-radius:15px;
难以启齿的温柔 2024-12-07 08:53:21

使用 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.

苍白女子 2024-12-07 08:53:21

如果您不想依赖像素,则可以随时使用 %

border-radius: 50%;

If you don't want to rely on pixels, you can always use %

border-radius: 50%;

月亮坠入山谷 2024-12-07 08:53:21

只需使用 "border-radius" css 属性,如下所示:

div {
     border-radius:8px;
}

Just use "border-radius" css property like this:

div {
     border-radius:8px;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文