Windows 上 Firefox 10 上的边框出现奇怪行为

发布于 2025-01-08 03:56:33 字数 525 浏览 0 评论 0原文

我正在尝试使用边框创建箭头,但 win7 上的 FF10 不想玩球。

它在我的边框周围添加了 1px 边框。

这是一个带有最小示例的 JSFiddle: http://jsfiddle.net/5jjVb/1/

边框颜色并不重要我设置了,额外的边框总是相同的颜色。

对于那些不在 FF 或 Windows 7 上的人,这里有一个屏幕截图:

他们在我的边框周围放置了一个边框,这样我就可以有一个arrow in my arrow

这是 OS X 上 FF 中的相同箭头:

No extra border

我可以随时更改箭头颜色改为相同颜色作为额外的边框,但这感觉不对。

I'm trying to create arrows using borders but FF10 on win7 doesn't want to play ball.

It adds a 1px border around my border.

Here is a JSFiddle with a minimal example:
http://jsfiddle.net/5jjVb/1/

It doesn't matter what color the border I set has, the extra border is always the same color.

For those of you not on FF or on window 7 here is a screenshot:

They put a border around my border so I can have an arrow in my arrow

And here is the same arrow in FF on OS X:

No extra border

I could always change the color of the arrow to the same color as the extra border but that doesn't feel right.

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

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

发布评论

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

评论(3

半透明的墙 2025-01-15 03:56:33

这是一个错误。 https://bugzilla.mozilla.org/show_bug.cgi?id=646053

这是解决这个问题的练习。 http://jsfiddle.net/5jjVb/3/

It's a bug. https://bugzilla.mozilla.org/show_bug.cgi?id=646053

And here is workout to tackle this issue. http://jsfiddle.net/5jjVb/3/

好多鱼好多余 2025-01-15 03:56:33

试试这个:

div {
    border: 30px solid transparent;
    border-left-color: #EEE;
    -moz-border-left-colors: none;
}

Try this:

div {
    border: 30px solid transparent;
    border-left-color: #EEE;
    -moz-border-left-colors: none;
}
不交电费瞎发啥光 2025-01-15 03:56:33

提供 rgba() 而不是 transparent 以实现透明度。有关更多信息,请检查我的这个答案

Firefox 4 中的 CSS 透明边框问题?

Give rgba() instead of transparent for transparency.For more check my this answer

CSS Transparent Border Problem In Firefox 4?

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