-3

我遇到了一个问题。这是小提琴http://jsfiddle.net/ardeezstyle/a2bPk/1/

我希望每列的高度相等。列标题中的文本可以是自由流动的、环绕的。它们可以换成多行。

这是代码的一部分,它让我在 mac 和 windows 中的 chrome 和 safari 中实现了这一点。

margin:auto;
height:100%;
min-height:100%;

我已经对问题进行了更正。我希望每个标签的内容具有相同的高度。

4

1 回答 1

0

In your code you are writing bg color for div not for th that is why it is taking auto height.

Why don't you use like this

thead tr{
    background: #ff0;
}

DEMO

于 2013-04-24T10:09:16.017 回答