Table HtmlEmbed a table in google sites using the WYSIWYG Insert html menu.
Google Sites Table HTML Code<table style="border-collapse: collapse; border-top-color: rgb(136, 136, 136); border-right-color: rgb(136, 136, 136); border-bottom-color: rgb(136, 136, 136); border-left-color: rgb(136, 136, 136); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; " border="1" bordercolor="#888" cellspacing="0"><tbody><tr><td style="width: 60px; "> Table Cell 01</td><td style="width: 60px; "> Table Cell 02</td></tr></tbody></table>Google Sites Creates an Additional style attribute for the Table tag.
The Inline CSS style attribute can also be used, by clicking the <HTML> button in the
Menu Bar .
For Example : The default border can be set to 0px to hide it.<table style="... </table><table border=2 cellpadding=4> <tr> <th colspan=2>Header 01</th> </tr> <tr> <td>01</td> <td>1.1</td> </tr> <th colspan=2>Header 02</th> </tr> <tr> <td>02</td> <td>2.1</td> </tr> </table>
|



