內(nèi)嵌標簽: thead (可選)、 tbody (可選)、td、tr、colgroup 、 caption (可選)
創(chuàng)新互聯(lián)堅持“要么做到,要么別承諾”的工作理念,服務(wù)領(lǐng)域包括:網(wǎng)站設(shè)計制作、成都網(wǎng)站建設(shè)、企業(yè)官網(wǎng)、英文網(wǎng)站、手機端網(wǎng)站、網(wǎng)站推廣等服務(wù),滿足客戶于互聯(lián)網(wǎng)時代的江夏網(wǎng)站設(shè)計、移動媒體設(shè)計的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡(luò)建設(shè)合作伙伴!
屬性:align ,bgcolor ,bordercolor,border ,cellpadding ,cellspacing ,frame ,width ,summary ,rules 。
現(xiàn)在的table的屬性基本已經(jīng)過時,都使用css進行設(shè)置table樣式。
1.border-collapse collapse | separate
collapse : border線合并
separate: border線分隔,默認屬性
ps: 使用collapse 此屬性時, border-spacing 、empty-cells和 border-radius 失效 ,無任何效果。
2.border-spacing horizontal length | vertical length
3.vertical-align 設(shè)置內(nèi)容與圖片位置
4.table-layout auto | fixed
ps: auto 表格布局自適應(yīng)寬度
fixed 表格布局固定寬度,文字內(nèi)容等可能會溢出
5.caption-side 針對于caption標簽的css樣式設(shè)置
6.empty-cells 但單元格內(nèi)無內(nèi)容時候,可設(shè)置隱藏
參考:
表格的邊框分為3個元素決定:table,th,td;
如果三種元素全部設(shè)置了border樣式,那么會發(fā)現(xiàn)外層有2層border,里面的th與th,td與td,td與th之間的border也是有2層的,所以,在設(shè)置border之前最好先想好通過什么樣的規(guī)則來展現(xiàn)boeder(因為方式很多,那么我們只能選擇適合自己的-也就是用的習(xí)慣的)。另外,表格之間還有一個概念是表空間,可以通過給表格設(shè)置樣式table{ border-collapse:collapse; border-spacing:0;}清除這些多余的空間,那么有了上面的準備工作之后,下面就開始border樣式的設(shè)置--代碼如下:
td,th{border-bottom: 1px solid #e3e3e3;//xia下邊框border-right:1px solid #e3e3e3;//有邊框}
你是.hd-info 這個定義的長度是990還是table的width是990?。咳绻乔罢?,說明你定義的其他樣式被沖掉了,需要自己查去;如果是后者的話,就是你的.he-info這個樣式有問題了,因為你的width=1000
html
headtitleHTML
Table/title/head
style
type="text/css"
TABLE
{
border-collapse:
separate;
border:
2px
solid
blue;
}
.one{
border-left:none;
border-right:1px
solid
#f00;
border-top:1px
solid
#f00;
border-bottom:1px
solid
#f00;}
/style
body
table
summary="TechRepublic.com
-
Tables
and
CSS"
theadtr
thabbr="salesperson"
scope="col"Person/th
thabbr="sales"
scope="col"Sales/th
/tr/thead
tbodytr
td
class="one"Mr.
Smith/td
td600.00/td
/trtr
tdMr.
Jones/td
td0000.00/td
/trtr
tdMs.
Williams/td
td
class="one"0000.00/td
/tr/tbody
tfoottr
tdLet's
sale,
sale,
sale!/td
/tr/tfoot/table/body/html
我設(shè)置了一個樣式one,單元格左邊沒有邊框,上下和右邊有邊框,顏色你可以自己設(shè)置。