HTML - DOM样式对象 captionSide 属性



HTML DOM 样式对象 captionSide 属性设置或返回表格标题的位置。表格标题只能垂直定位在顶部或底部。

语法

设置 captionSide 属性
object.style.captionSide= "top | bottom | initial | inherit";
获取 captionSide 属性
object.style.captionSide;

属性值

描述
top 这是默认值,将表格标题设置在表格顶部。
bottom 将表格标题设置在表格底部。
initial 用于将此属性设置为其默认值。
inherit 用于继承其父元素的属性。

返回值

它返回一个字符串值,表示表格标题的位置。

HTML DOM 样式对象“captionSide”属性示例

以下示例将表格标题设置在表格的顶部和底部。

<!DOCTYPE html>
<html lang="en">
<head>
    <title>
        HTML DOM Style Object captionSide Property
    </title>
    <style>
        table {
            border: aqua 2px solid;
        }
    </style>
</head>
<body>
    <p>
        Click to position the table caption.
    </p>
    <button onclick="funtwo()">Bottom</button>
    <button onclick="fun()">Top</button>
    <br><br><br><br>
    <table id="border" border="1">
        <caption>Table No. 21</caption>
        <tr>
            <td>This is</td>
            <td>is</td>
        </tr>
        <tr>
            <td>an example</td>
            <td>table</td>
        </tr>
        <tr>
            <td>for</td>
            <td>caption side</td>
        </tr>
    </table>
    <script>
        function funtwo() {
            document.getElementById("border")
                .style.captionSide = "bottom";
        }
        function fun() {
            document.getElementById("border")
                .style.captionSide = "top";
        }        
    </script>
</body>
</html>

支持的浏览器

属性 Chrome Edge Firefox Safari Opera
captionSide 是 1 是 12 是 1 是 1 是 4
html_dom_style_object_reference.htm
广告