Home  >  Article  >  Web Front-end  >  How to set the position of table title (caption tag) in css

How to set the position of table title (caption tag) in css

青灯夜游
青灯夜游Original
2018-11-28 15:30:4915144browse

We can specify the position of the table (

) title (caption tag) by setting the relevant attribute value of the css caption-side attribute, that is: you can use the caption-side attribute to specify where the title is located in the table side.

How to set the position of table title (caption tag) in css

In the table table, the caption tag is used to provide a short title for the table, such as a title or a short description. The caption tag is inserted after the opening

tag and should always be the first child of the table. Then we can use the caption-side attribute to change its position in the table.

We can use the caption-side attribute to position the table title above or below the table, specifying that the title is located above or below the table.

Note:

1. Before CSS 2.1, two values ​​were provided: "left" and "right" to position the title on the left and right of the table respectively. right. However, these two values ​​​​were removed in the final 2.1 specification, and are now non-standard and not very compatible with browsers.

2. If you want to "horizontally align" the title content in the title box, you need to use the text-align attribute; you can also set other alignment methods through the text-align attribute.

How to set the position of table title (caption tag) in css

Let’s take a look at how the caption-side attribute sets the title position of the table table.

Basic syntax of the caption-side attribute:

caption-side: top | bottom | inherit

Default attribute: top

Applies to: 'table-caption '

animation in element: No

caption-side attribute value description:

top: The title can be positioned above the table.

bottom: The title can be positioned below the table.

inherit: Inherit the title position from the parent's title position.

Example of the caption-side attribute:

1. The title is above the table

html code:

<table class="default">
    <caption><em>表的标题,位置:顶部(默认)</em></caption>
    <thead>
      <tr>
        <th>标题内容 1</th>
        <th>标题内容 2</th>
      </tr>
    </thead>
    <tfoot>
      <tr>
        <td>页脚内容 1</td>
        <td>页脚内容 2</td>
      </tr>
    </tfoot>
    <tbody>
      <tr>
        <td>主体内容 1</td>
        <td>主体内容 2</td>
      </tr>
    </tbody>
  </table>

css code:

caption {
  caption-side: top;
  padding: .5em;
  color: #de64a4;
}

Rendering:

How to set the position of table title (caption tag) in css

2. The title is below the table

HTML code:

<table>
    <caption><em>表的标题,位置:底部</em></caption>
   <thead>
      <tr>
        <th>标题内容 1</th>
        <th>标题内容 2</th>
      </tr>
    </thead>
    <tfoot>
      <tr>
        <td>页脚内容 1</td>
        <td>页脚内容 2</td>
      </tr>
    </tfoot>
    <tbody>
      <tr>
        <td>主体内容 1</td>
        <td>主体内容 2</td>
      </tr>
    </tbody>
  </table>

css code:

caption {
  caption-side: bottom;
  padding: .5em;
  color: #de64a4;
}

Rendering:

How to set the position of table title (caption tag) in css

##Browser support:

How to set the position of table title (caption tag) in css

The caption-side attribute is supported by all major browsers, such as: Chrome, Firefox, Safari, Opera, Internet Explorer 8 and Android and iOS

Note:

1. IE8 only supports the caption-side attribute if !DOCTYPE is specified.

2. Firefox supports two non-standard values: left and right.

Summary: The above is the entire content of this article, I hope it will be helpful to everyone's study.

The above is the detailed content of How to set the position of table title (caption tag) in css. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn