最新的Web開發教程
 

HTML <table> width Attribute

<HTML <table>標記

一個HTML表400像素的寬度:

<table width="400">
  <tr>
    <th>Month</th>
    <th>Savings</th>
  </tr>
  <tr>
    <td>January</td>
    <td>$100</td>
  </tr>
  <tr>
    <td>February</td>
    <td>$80</td>
  </tr>
</table>
試一試»

定義和用法

width屬性指定一個表的寬度。

如果width不設置屬性,表佔用需要顯示表數據的空間。


瀏覽器支持

屬性
width

兼容性說明

width屬性<table>在HTML5不支持。 使用CSS來代替。

CSS語法: <table style="width:400px">

CSS實例:設置表格寬度

在我們的CSS教程中,你可以找到有關的更多詳細信息表格的寬度


句法

<table width="pixels|%">

屬性值

描述
pixels 設置寬度以像素為單位(例如: width="50"
% 設置在周邊元件的百分比的寬度(例如: width="50%"

<HTML <table>標記