【CSS】border-left-color - 境界線(左)の色

【CSS】border-left-color - 境界線(左)の色

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

検証環境

border-left-color

border-left-colorは“境界線(左)の色”のプロパティです。

基本構文

border-left-color: 値;

サンプル

<style>
p {
    border-left-style: solid;
    ___ih_hl_start
    border-left-color: red;
    ___ih_hl_end
}
</style>
 
<p>CSS : Cascading Style Sheets</p>