html table表格標籤內容如何置中顯示?表格的align屬性的用法介紹

來源:互聯網
上載者:User
本篇文章主要的介紹了關於HTML 表格table標籤的置中使用,還有關於align屬性在table表格標籤中的使用方法,可以協助表格對齊和表格中的文本對齊。接下來讓我們來看看這篇文章吧。

首先我們先來看看table表格的內容置中的使用:

我們先給大家介紹個屬性,它就是align屬性。

align 屬性規定表格相對於周圍元素的對齊。

通常來說,HTML表格的前後都會出現折行。通過運用align屬性,可實現其他HTML元素圍繞表格的效果。

在HTML4.01中,不贊成使用body元素的align屬性;在XHTML1.0Strict DTD中,不支援body元素的align屬性。

請使用 CSS 代替。

CSS 文法:

<table style="float:right">

table表格中的align屬性置中的文法:

<table align="center">

這是align屬性的一些常用屬性值:

下面我們來看執行個體:

<table border="1" align="center">  <tr>    <th>Month</th>    <th>Savings</th>  </tr>  <tr>    <td>January</td>    <td align="center">$100</td>  </tr>  <tr>    <td>February</td>    <td>$80</td>  </tr></table>

這代碼中很明顯得能看到,我在table標籤中設定了置中對齊,說明這個表格在網頁中已經置中對齊了,後面又在td標籤中加上了置中的align屬性,把那裡面的文本對齊了,所以,最後顯示的鮮果

,在網頁的正中間顯示了,中間的那個td標籤我用了align屬性來置中,所以吧中間顯示的是文本在中間的文職。

我們來把文本調到右邊去看看:

<table border="1" align="center">  <tr>    <th>Month</th>    <th>Savings</th>  </tr>  <tr>    <td>January</td>    <td align="center">200</td>  </tr>  <tr>    <td>February</td>    <td align="right">180</td>  </tr></table>

現在下面的一個td改成右邊的了,來看看效果:

,後面的180真的到右邊來了,這就是HTML table標籤的置中用法,也是align屬性在table中的用法。本篇文章到這就結束了,有問題的可以在下方留言。

相關文章

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.