我尝试在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中,它在我的情况下不起作用。
答案 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}
答案 1 :(得分:1)
使用table-plus宏,如your link
中所述{table-plus:width = 100%| columnAttributes = style = width:33%,style = width:33%,style = width:33%}