webkit边框半径问题
这是我的问题:我正在显示一个覆盖层(使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这似乎是圆角边框 div 后面的另一个 div 或元素的边框
this seems to be the border of another div or element behind your rounded bordered div