两个或多个表样式集成在一个html文件中

时间:2013-01-27 10:42:00

标签: php

在一个页面中使用多个PHP表格让我很头疼。

我从外部文件加载我的PHP表,但是当我使用多个外部PHP生成的表具有不同的表样式时,第二个不会加载不同的样式。它的加载方式与另一个相同。有什么可做的?

1 个答案:

答案 0 :(得分:1)

将不同的表包装在不同的类中并应用。

<div class="firststyle">
 <-- load/include/output first php table here -->
 <table>
 ...
 </table>
</div>

<div class="secondstyle">
 <-- load/include/output second php table here -->
 <table>
 ...
 </table>
</div>

和css-styles:

 .firststyle table { // style of first table }
 .secondstyle table { // style of second table }