borderの設定サンプル
ボーダーの太さをまとめて設定をしました。
HTMLコード
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="ja">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=Shift_Jis">
<meta http-equiv="Content-Style-Type" content="text/css">
<title>ボーダー</title>
<style type="text/css">
<!--
body { background-color: #fff; color: #000 }
div.mihon{ border-width: medium thick 10px thin; border-style: solid}
-->
</style>
</head>
<body>
<div class="mihon">ボーダーの太さをまとめて設定をしました。</div>
</body>
</html>