1

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をセルに追加することは知っていますが(このリンクによると)、confluence 3.5では私の場合は機能しません。

4

2 に答える 2

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}

これにより、次が生成されます。 ここに画像の説明を入力

于 2012-10-08T18:42:29.070 に答える
1

リンクで説明されているように、テーブルプラス マクロを使用します。

{table-plus:width=100%|columnAttributes=style=width:33%, style=width:33%, style=width:33%}
于 2012-08-30T20:53:45.920 に答える