html5 table標籤的樣式介紹(另附html5 table css置中的執行個體)

來源:互聯網
上載者:User
html table標籤的樣式介紹(另附html5 table css置中的執行個體),本篇文章主要為大家講述的就是html5 table標籤的定義和各種樣式介紹。

HTML 5 <table> 標籤的定義和用法:

<table> 標籤可定義表格。在 <table> 標籤內部,你可以放置表格的標題、表格行、表格列、表格單元以及其他的表格。

html table標籤的標準屬性:

class, contenteditable, contextmenu, dir, draggable, id, irrelevant,

lang, ref, registrationmark, tabindex, template, title

html table樣式執行個體介紹:

<table border="1">    <tr>            <td width="95" align="right" valign="top" nowrap="nowrap"><strong>處理意見:</strong></td>                <td id="fnote"  width="300px" colspan="8"> </td>                         </tr>    <tr>            <td><a href="#" onclick="showad()">審批記錄</a></td>    </tr>                </table>

width: 列的寬度

align: 儲存格內容水平相片順序:right left center

valign: 儲存格內容垂直相片順序: top bottom middle baseline

colspan: 儲存格可跨越的列數

rowspan: 儲存格可跨越的行數

rowspan=3 tr

nowrap:規定儲存格中的內容是否折行


表格table特有的樣式屬性:

1、邊框合并

屬性:border-collapse

取值:

1、separate

預設值,分離邊框模式

2、collapse

邊框合并模式

2、邊框邊距

1、作用

設定相鄰儲存格邊框之間的距離(類似於cellspacing)

2、屬性

border-spacing

取值:

1、取1個值

表示水平和垂直間距相等

2、取2個值

第一個值表示的 水平間距

第二個值表示的 垂直間距

兩個值之間用 空格 隔開

3、要求

border-collapse必須為separate

必須為分離邊框模式時有效

3、標題位置

<caption></caption>

作用:將標題位置由預設的位置改到表格之下

屬性:caption-side

取值:

1、top

預設

2、bottom

標題位於表格之下

在css裡面用div來置中表格:

看到使用display:table-cell可以將div渲染成一個cell,在表格td中的內容都是置中布局,那麼想到了一個div中包含一個div,裡面的div垂直置中的辦法猜想可以使用:

將外面的div設定display:table-cell,那麼裡面的div就自動垂直置中了

測試才發現裡面的div沒有置中,那麼使用vertical-align置中,因為:

只有一個元素屬於inline或是inline-block(table-cell也可以理解為inline-block水平)水平,其身上的vertical-align屬性才會起作用。

例片,按鈕,單複選框,單行/多行文字框等HTML控制項,只有這些元素預設情況下會對vertical-align屬性起作用。

現在table-cell中可以使用vertical-align:middle讓裡面的內容垂直置中了,如果我想要實現水平置中呢?text-algin:center,適合行內元素,那麼我只要將裡面的div設定為line-block就行了

代碼驗證:

<style>        .table {            display: table-cell;            vertical-align: middle;            text-align: center;        }        .like {            display: inline-block;            width:100px;            height:50px;            border:2px solid black;        }    </style><div class="table" style="width:300px;height: 300px;background-color: #13c4a5">    <div class="like">    </div></div>

【相關推薦】

html strong標籤是什麼意思?html中strong標籤的具體用法介紹

html5 audio標籤怎麼用?html5 自動播放實現代碼執行個體

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.