border-color

プロパティの説明

border-colorは、要素の周りの枠線の色を指定するプロパティです。全ての要素に指定することができます。

値は半角スペースで区切って4つまで指定することができます。指定した値の個数により、枠線の色の適用される範囲が変わります。

指定できる値

CSSで定義された色の値
#ccccccなど
transparent
透明

サンプル

サンプルページ

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
 "https://www.w3.org/TR/html4/strict.dtd">
<html lang="ja">

<head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
 <meta http-equiv="Content-Style-Type" content="text/css">
 <title>サンプルページ</title>
 <style type="text/css">
 <!--
 p{margin:10px 0; padding:20px;}
 .b1{
 border-style:solid;
 border-width:2px;
 border-color:#000000 #cccccc;
 }
 -->
 </style>
</head>

<body>
 <h1>サンプルページ</h1>
 <p class="b1">枠線の上下の色を黒、左右の色を灰色と指定。</p>
</body>

</html>