CSS - border-bottom 属性



CSS **border-bottom** 属性是一个简写属性,它提供了一种简单的方法来在一个声明中设置border-bottom-widthborder-bottom-styleborder-bottom-color 属性的值。此属性受书写模式的影响。

语法

border-bottom: border-width border-style border-color| initial |inherit;

属性值

描述
指定底部边框的宽度。默认值为 medium。
指定底部边框的样式。默认值为 none。
指定底部边框的颜色。默认值为文本的颜色。
initial 将属性设置为其默认值。
inherit 从父元素继承此属性。

CSS 底部边框属性示例

以下示例说明了使用不同值的 **border-bottom** 属性。

设置所有底部边框属性值

要在一个声明中设置 border-block-start-width、border-block-start-style 和 border-block-start-color 的值,我们使用 **border-block-start** 属性。在下面的示例中,使用了 4px 宽度、dashed 样式和蓝色。

示例

<!DOCTYPE html>
<html>

<head>
    <style>
        #caps {
            width: 500px;
            border-bottom: 4px solid red;
        }

        #small {
            width: 500px;
            border-bottom: 4px dashed green;
        }

        #border {
            padding: 10%;
            width: 300px;
            border: 1px solid black;
            border-bottom: 7px double orange;
        }
    </style>
</head>

<body>
    <h2>CSS border-bottom Property</h2>
    <p id="caps">
        THIS SHOWS THE BORDER BOTTOM PROPERTY ON CAPITAL TEXT.
    </p>
    <p id="small">
        this shows the border bottom property on small text.
    </p>
    <p id="border">
        This shows border bottom property on border.
    </p>
</body>

</html>

底部边框属性的组成部分

**border-block-start** 属性是 border-bottom-width、border-bottom-style 和 border-bottom-color 的组合。以下示例显示了这些单个属性如何协同工作以显示 border-block-start 效果。

示例

    
<!DOCTYPE html>
<html>

<head>
    <style>
        #caps {
            border-bottom-width: 4px;
            border-bottom-style: solid;
            border-bottom-color: grey;
        }

        #small {
            border-bottom-width: 7px;
            border-bottom-style: double;
            border-bottom-color: #666699;
        }
    </style>
</head>

<body>
    <h2>CSS border-bottom Property</h2>
    <p id="caps">
        THIS SHOWS THE BORDER BOTTOM PROPERTY USING CONSTITUENT PROPERTIES.
    </p>
    <p id="small">
        this shows the border bottom property using constituent properties.
    </p>
</body>

</html>

支持的浏览器

属性 Chrome Edge Firefox Safari Opera
border-bottom 1.0 4.0 1.0 1.0 3.5
css_properties_reference.htm
广告