如何在汇合表加宏中更改列宽?

时间:2012-01-31 12:59:44

标签: confluence

我尝试在Confluence wiki标记中更改列宽,但我无法理解为什么它不起作用。我有这样的事情:

{table-plus:columnTypes=S,-,.|autoNumber=true|sortColumn=3 
|columnAttributes=,,style="background:yellow; font-size:14pt;"} 
|| Name || Phone || TCP || 
| John | 555-1234 | 192.168.1.10 | 
| Mary | 555-2134 | 192.168.1.12 | 
| Bob | 555-4527 | 192.168.1.9 | 

{table-plus}

我知道“columnAttributes”属性会将CSS添加到单元格中(根据此link),但在汇合3.5中,它在我的情况下不起作用。

2 个答案:

答案 0 :(得分:2)

以下是设置每列宽度的语法,格式为可读性。 (请记住,宏必须不包含空格。):

{table-plus:columnTypes=S,-,.
 |autoNumber=true|sortColumn=3|width=100%
 |columnAttributes=
    style="background:yellow;font-size:14pt;style=width:33%",
    style="background:yellow;font-size:14pt;style=width:33%",
    style="background:yellow;font-size:14pt;style=width:33%"
}

|| Name     || Phone   || TCP         || 
| John      | 555-1234 | 192.168.1.10 | 
| Mary      | 555-2134 | 192.168.1.12 | 
| Bob       | 555-4527 | 192.168.1.9  | 

{table-plus}

这会产生: enter image description here

答案 1 :(得分:1)

使用table-plus宏,如your link

中所述

{table-plus:width = 100%| columnAttributes = style = width:33%,style = width:33%,style = width:33%}