Colgroup 标签在 IE8 中不起作用

发布于 2024-12-01 13:57:29 字数 323 浏览 0 评论 0 原文

我正在尝试创建一个数据表,但在样式方面遇到了一些问题。

1)我试图将交替行应用于未触发的TR。

有没有办法应用交替风格而不将课程传递给所有 TD
每个 TR 中都有..?

2) Colgroup正在IE8中工作,特别是对齐 (cols=A&SI资本分配,Cap Var,A&SI费用分配,Exp Var)

有没有办法解决这个问题

这里是代码:http://jsfiddle.net/yvJ75/1/

I am trying to create a data table, where I am facing few issues with styling.

1) I am trying to apply alternating row to TR which is not firing.

Is there any way to apply the alternating style without passing the class to all the TD's
with in each TR..?

2) Colgroup is working in IE8, particularly with alignment
(cols=A&SI Capital Allocation, Cap Var, A&SI Expense Allocation, Exp Var)

Is there any way to apply fix this issue

Here is the code: http://jsfiddle.net/yvJ75/1/

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

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

发布评论

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

评论(2

单身情人 2024-12-08 13:57:29

您可以使用 CSS3 伪类 nth-child(odd) 和 nth-child(even)。

我在这里更新了代码: http://jsfiddle.net/yvJ75/12/

这些是CSS 的变化

/*
.bg-oddrow {
    background-color:#fbfcfb !important;
}

.bg-evenrow {
    border-bottom:1px solid #dadada !important;
}*/
table tr:nth-child(odd) td{
    background-color:#fbfcfb !important;
}
table tr:nth-child(even) td{
    border-bottom:1px solid #dadada !important;
}

You can use CSS3 pseudo-classes nth-child(odd) and nth-child(even).

I have updated the code here: http://jsfiddle.net/yvJ75/12/

These are the changes in the CSS

/*
.bg-oddrow {
    background-color:#fbfcfb !important;
}

.bg-evenrow {
    border-bottom:1px solid #dadada !important;
}*/
table tr:nth-child(odd) td{
    background-color:#fbfcfb !important;
}
table tr:nth-child(even) td{
    border-bottom:1px solid #dadada !important;
}
记忆で 2024-12-08 13:57:29

有没有办法在不通过的情况下应用交替样式
每个 TR 中的所有 TD 的类..?

是的 - 您可以应用 之类的类,并使用 tr.even-row td 之类的 css 选择器来应用背景。这种方法适用于所有浏览器。您甚至可以使用 tr:nth-child(odd)tr:nth-child(even),但这是 css3 伪类

Colgroup 正在 IE8 中工作,特别是对齐(cols=A&SI
资本分配、Cap Var、A&SI 费用分配、Exp Var)
有什么办法可以解决这个问题

你的意思是它不起作用吗?列仅接受边框、背景、宽度和可见性 CSS 属性。 Td 不会继承其他属性,因为它们不是 col 元素的直接后代(可以在 此处)。最可靠的方法是在 td 上设置一个类,并根据该类设置 td 内容的样式。

Is there any way to apply the alternating style without passing the
class to all the TD's with in each TR..?

Yes - you can apply the class like <tr class="even-row"> and use a css selector like tr.even-row td to apply background to <td>. This approach works in all browsers. You could even use tr:nth-child(odd) and tr:nth-child(even), but this are css3 pseudo classes.

Colgroup is working in IE8, particularly with alignment (cols=A&SI
Capital Allocation, Cap Var, A&SI Expense Allocation, Exp Var)
Is there any way to apply fix this issue

You mean it's not working? Columns accept only border, background, width and visibility css properties. Td's won't inherit other properties since they are not a direct descendant of the col element (a bit on understanding this can be found here). The most solid way is to set a class on td and style the td contents trought that.

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