枠線の太さ指定
border-top:枠関連のプロパティの値 上の枠線の設定 border-bottom:枠関連のプロパティの値 下の枠線の設定 border-left:枠関連のプロパティの値 左の枠線の設定 border-righth:枠関連のプロパティの値 右の枠線の設定 border:枠関連のプロパティの値 上・下・左・右 一括枠線の設定 これらのプロパティは、枠関連のプロパティの値をまとめて指定します。
border-colorで指定できる値 border-widthで指定できる値 border-styleで指定できる値 必要な値を任意の順序で半角スペースで区切って指定します。指定しなかった値については、初期値が指定されたことになります。
「border」を使用して上下左右別々の設定をすることはできません。HTMLソース
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html lang="ja">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<title>枠線をまとめて指定する</title>
<style type="text/css">
<!--
p {
text-align: center;
font-weight: bold;
margin: 2em;
padding: 1em
}
#sample1 { border: double 3px #ff3300 }
#sample2 { border: dashed 2px #ffcc00 }
#sample3 { border: dotted 7px #339933 }
#sample4 { border: ridge 10px #3366cc }
-->
</style>
</head>
<body>
<p id="sample1">border: double 3px #ff3300</p>
<p id="sample2">border: dashed 2px #ffcc00</p>
<p id="sample3">border: dotted 7px #339933</p>
<p id="sample4">border: ridge 10px #3366cc</p>
</body>
</html>