【CSS】border-bottom-width - 境界線(下)の太さ

【CSS】border-bottom-width - 境界線(下)の太さ

CSSのborder-bottom-widthプロパティについて解説します。

検証環境

border-bottom-width

border-bottom-widthは“境界線(下)の太さ”のプロパティです。

基本構文

border-bottom-width: 値;

サンプル

<style>
p {
    border-bottom-style: solid;
    ___ih_hl_start
    border-bottom-width: 5px;
    ___ih_hl_end
}
</style>
 
<p>CSS : Cascading Style Sheets</p>