HTML <tbody> 標(biāo)簽的 valign 屬性
2017-08-05 HTML tbody 標(biāo)簽的 valign 屬性 HTML tbody 標(biāo)簽 實(shí)例 下面的 HTML 表格把 tbody 元素中的內(nèi)容垂直居中對(duì)齊: table border=1 width=100% tr thMonth/th thSavings/th /tr tbody valign=middle tr tdJanuary/td td$100/td /tr tr
HTML <tbody> 標(biāo)簽的 charoff 屬性
2017-08-05 HTML tbody 標(biāo)簽的 charoff 屬性 HTML tbody 標(biāo)簽 實(shí)例 下面的 HTML 表格把 tbody 元素中的內(nèi)容與字符 . 向右兩個(gè)字符的位置對(duì)齊: table border=1 width=100% tr thMonth/th thSavings/th /tr tbody align=char char=.
HTML <tbody> 標(biāo)簽的 char 屬性
2017-08-05 HTML tbody 標(biāo)簽的 char 屬性 HTML tbody 標(biāo)簽 實(shí)例 下面的 HTML 表格把 tbody 元素中的內(nèi)容與字符 . 對(duì)齊: table border=1 width=100% tr thMonth/th thSavings/th /tr tbody align=char char=. tr tdJanuary/td td$100/td /tr
HTML <tbody> 標(biāo)簽的 align 屬性
2017-08-05 HTML tbody 標(biāo)簽的 align 屬性 HTML tbody 標(biāo)簽 實(shí)例 下面的 HTML 表格將 tbody 元素中的內(nèi)容向右對(duì)齊: table border=1 width=100% thead tr thMonth/th thSavings/th /tr /thead tbody align=right tr tdJanuary/td td$100/td /t
HTML <table> 標(biāo)簽的 width 屬性
2017-08-05 HTML table 標(biāo)簽的 width 屬性 HTML table 標(biāo)簽 實(shí)例 帶有 400 像素寬度的表格: table border=1 width=400 tr thMonth/th thSavings/th /tr tr tdJanuary/td td$100/td /tr/table 親自試一試 定義和用法 width 屬性規(guī)定表格
HTML <table> 標(biāo)簽的 summary 屬性
2017-08-05 HTML table 標(biāo)簽的 summary 屬性 HTML table 標(biāo)簽 實(shí)例 下面的例子定義了表格內(nèi)容的摘要: table border=1 summary=Monthly savings for the Flintstones family tr thMonth/th thSavings/th /tr tr tdJanuary/td td$100/td /tr/tab
HTML <table> 標(biāo)簽的 rules 屬性
2017-08-05 HTML table 標(biāo)簽的 rules 屬性 HTML table 標(biāo)簽 實(shí)例 下面的例子規(guī)定只有行之間的邊框是可見的: table rules=rows tr thMonth/th thSavings/th /tr tr tdJanuary/td td$100/td /tr/table 親自試一試 定義和用法 rule
HTML <table> 標(biāo)簽的 frame 屬性
2017-08-05 HTML table 標(biāo)簽的 frame 屬性 HTML table 標(biāo)簽 實(shí)例 下面的例子規(guī)定只有圍繞表格的邊框是可見的: table frame=box tr thMonth/th thSavings/th /tr tr tdJanuary/td td$100/td /tr/table 親自試一試 定義和用法 fr
HTML <table> 標(biāo)簽的 cellspacing 屬性
2017-08-05 HTML table 標(biāo)簽的 cellspacing 屬性 HTML table 標(biāo)簽 實(shí)例 下面的例子把表格單元格間距設(shè)置為 10 像素: table border=8 cellspacing=10 tr thMonth/th thSavings/th /tr tr tdJanuary/td td$100/td /tr/table 親自試一試 定
HTML <table> 標(biāo)簽的 cellpadding 屬性
2017-08-05 HTML table 標(biāo)簽的 cellpadding 屬性 HTML table 標(biāo)簽 實(shí)例 下面的例子把表格單元邊界與單元內(nèi)容之間的間距設(shè)置為 10 像素: table border=8 cellpadding=10 tr thMonth/th thSavings/th /tr tr tdJanuary/td td$100/td