-webkit- 和 -moz-border-radius 在桌子上不起作用?

发布于 2024-08-04 14:21:39 字数 284 浏览 6 评论 0原文

这有效

div {
  -moz-border-radius: 5px 5px 0 0;
  border:1px solid #000;
  margin:30px;
}

这不起作用

table {
  -moz-border-radius: 5px 5px 0 0;
  border:1px solid #000;
  margin:30px;
}

有谁知道如何使用 -moz 和 -webkit 在表格上工作?

This works

div {
  -moz-border-radius: 5px 5px 0 0;
  border:1px solid #000;
  margin:30px;
}

This does not work

table {
  -moz-border-radius: 5px 5px 0 0;
  border:1px solid #000;
  margin:30px;
}

Does anyone know how to use -moz and -webkit to work on tables?

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

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

发布评论

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

评论(1

与他有关 2024-08-11 14:21:39

5.6。对表格的影响

“border-radius”属性可以
适用于“表”和“内联表”
元素。当“边界崩溃”为
“崩溃”,UA 可以应用
'table' 的 border-radius 属性
和 'inline-table' 元素,但是是
不需要。在这种情况下不仅
必须是相邻的边界半径
角不相交,但
a 的水平和垂直半径
单个角不能延伸超过
该角的单元格边界
(即单元格的其他角必须
不受这个角落的影响
边界半径)。如果计算值
边界半径会导致这个
效果,然后是所有的使用值
表格的边界半径必须是
减少相同的因子,使得
半径既不相交也不延伸
超越了他们的界限
各自的角单元。

边界半径的影响
内部表元素未定义
在 CSS3 背景和边框中,但是
可能会在未来定义
规格。 CSS3 UA 应该忽略
边界半径属性应用于
内部表元素时
“border-collapse”是“折叠”。

5.6. Effect on Tables

The ‘border-radius’ properties do
apply to ‘table’ and ‘inline-table’
elements. When ‘border-collapse’ is
‘collapse’, the UA may apply the
border-radius properties to ‘table’
and ‘inline-table’ elements, but is
not required to. In this case not only
must the border radii of adjacent
corners not intersect, but the
horizontal and vertical radii of a
single corner may not extend past the
boundaries of the cell at that corner
(i.e. the cell's other corners must
not be affected by this corner's
border-radius). If the computed values
of the border radii would cause this
effect, then the used values of all
the border radii of the table must be
reduced by the same factor so that the
radii neither intersect nor extend
past the boundaries of their
respective corner cells.

The effect of border-radius on
internal table elements is undefined
in CSS3 Backgrounds and Borders, but
may be defined in a future
specification. CSS3 UAs should ignore
border-radius properties applied to
internal table elements when
‘border-collapse’ is ‘collapse’.

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