模板:TableLineVertical
BallanceBug(讨论 | 贡献)2020年5月10日 (日) 12:59的版本 (创建页面,内容为“<includeonly>{{#Widget:TableLineVertical|class={{{class}}}|column={{{column}}}|style={{{style|1px dashed black}}}}}</includeonly><noinclude> To change the style of…”)
To change the style of vertical border line of
{{}}
Parameters
class
Specifies the class name.
column
Specifies changing the vertical border style of which column. Selects the border next to (at right) the column.
style
Border style. Optional. Defaults to 1px solid black
.
Example
{{TableLineVertical | class = my_table | column = 2 | style = 2px dotted #999}}
Table:
{| class="wikitable my_table" |- ! Head 1 !! Head 2 !! Head 3 |- | Text 1-1 || Text 1-2 || Text 1-3 |- | Text 2-1 || Text 2-2 || Text 2-3 |- | Text 3-1 || Text 3-2 || Text 3-3 |}
Result:
Head 1 | Head 2 | Head 3 |
---|---|---|
Text 1-1 | Text 1-2 | Text 1-3 |
Text 2-1 | Text 2-2 | Text 2-3 |
Text 3-1 | Text 3-2 | Text 3-3 |