0

感谢您花时间提供帮助。我在 awstats 中创建了一个额外的部分报告,一切正常。但是,我有一排很长的条目。
Example: "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"
This entry makes the table a different size than all the rest of the tables in the report.

所以我的问题是:
我可以调整 awstats.pl 中额外部分表的列宽,使其对所有额外部分都固定吗?或者,我可以为表格设置默认宽度吗?

再次感谢!

4

1 回答 1

0

没关系。我找到了答案。

在 awstats.pl 的第 930 和 932 行中,您必须添加“word-wrap:break-word; max-width: 500px;” 到“th”和“td”样式。

例子:

th { border-color: #$color_TableBorder; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #$color_titletext; word-wrap:break-word; max-width: 500px; }

td { border-color: #$color_TableBorder; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #$color_text; word-wrap:break-word; max-width: 500px; }

于 2014-12-09T21:21:00.133 回答