No edit summary |
No edit summary |
||
(One intermediate revision by one other user not shown) | |||
Line 2: | Line 2: | ||
|tag=tr | |tag=tr | ||
|button=tr.gif | |button=tr.gif | ||
|example=[table][tr][td]text[/td][td]or more[/td][/tr][/table] | |example=[table]<br> [tr][td]text[/td][td]or more[/td][/tr]<br>[/table] | ||
|description=The tr tag corresponds to the html table row. By itself it produces no visible output. Table rows must be placed inside tables and can only contain td tags. | |description=The tr tag corresponds to the html table row. By itself it produces no visible output. Table rows must be placed inside tables and can only contain td tags. | ||
|result=<table | |result=<table> | ||
<tr><td>text</td><td>or more</td></tr> | <tr><td>text</td><td>or more</td></tr> | ||
</table> | </table> |