webkit边框半径问题

发布于 2024-11-04 05:13:54 字数 998 浏览 0 评论 0原文

这是我的问题:我正在显示一个覆盖层(使用 this),其中包含一个消息 div有圆角。

这是我的消息 div 的 css 代码:

#modal1
{
    margin-left: auto;
    margin-right: auto;
    display: none;
    width: 620px;
    height: 150px;
    position: relative;
    background-color: #FFF;

    border: 12px solid #FF771C;  
    -webkit-border-top-left-radius: 12px;
    -webkit-border-top-right-radius: 12px;
    -webkit-border-bottom-left-radius: 12px;
    -webkit-border-bottom-right-radius: 12px;

    text-align: center;
}

我的问题是我在左上角和右上角看到一个白色的“边框”(如果你仔细观察的话)。 这是图片,您可以亲自查看。现在,我通过将 webkit 的左上角和右边框属性设置为 0px 来“解决”这个问题,但这不是一个解决方案,所以我问你是否有一些想法?顺便说一句,这只是为 chrome 开发的,这就是为什么代码中只有 -webkit 。

编辑:
我在他们的论坛上找到了解决方案 http://flowplayer.org/tools/forum/40/46850< /a>

Here's my problem: I'm showing an overlay (using this) with a message div that has rounded corners.

Here is my css code for message div:

#modal1
{
    margin-left: auto;
    margin-right: auto;
    display: none;
    width: 620px;
    height: 150px;
    position: relative;
    background-color: #FFF;

    border: 12px solid #FF771C;  
    -webkit-border-top-left-radius: 12px;
    -webkit-border-top-right-radius: 12px;
    -webkit-border-bottom-left-radius: 12px;
    -webkit-border-bottom-right-radius: 12px;

    text-align: center;
}

And my problem is that I get a white "border" (if you look closely) in the upper left and right corners. Here is the image so you can see for yourself. Now, I "solved" this by putting top-left and -right border properties of webkit to 0px, but this is not a solution, so I'm asking if you have maybe some ideas? Btw, this is only developed for chrome that's why it's only -webkit up there in the code..

EDIT:
I found the solution on their forum http://flowplayer.org/tools/forum/40/46850

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

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

发布评论

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

评论(1

自找没趣 2024-11-11 05:13:54

这似乎是圆角边框 div 后面的另一个 div 或元素的边框

this seems to be the border of another div or element behind your rounded bordered div

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