在TABLE之前插入DIV

时间:2015-06-25 11:52:34

标签: html css

我只想在表格元素之前插入包含一些文本的DIV。

我尝试了这个但是文本插入到thead和第一个数据行之间,并且由于插入的文本,表格的第一列会受到干扰。

对此有什么合适的解决方案?我不能将类名添加到表元素中,因为我必须将此样式应用于现有的旧内容。

以下是 jsFiddle

CSS:

table:before {
    content:"this text should use the whole width of the table!";
}

1 个答案:

答案 0 :(得分:2)

这可能会对您有所帮助:

对不起,我在以前的帖子中错过了:

<强> CSS

table:before {
    content:"this text should use the whole width of the table!";
}

table
{
    display:block;
}

UPDATED:DEMO