border-left-colorプロパティは、左ボーダーの色を指定する際に使用します。
上下左右のボーダーの色をまとめて指定する際には、border-colorを使用してください。
p {border-style: solid;}
p.sample1 {border-left-color: #0000ff;}
p.sample2 {border-left-color: red;}
<html>
<head>
<link rel=”stylesheet” href=”sample.css”
type=”text/css”>
</head>
<body>
<p class=”sample1″>#0000ff</p>
<p class=”sample2″>red</p>
</body>
</html>
#0000ff
red