枠(太さ指定 border-width)
<html>
<head>
<title>枠</title>
<style type="text/css">
<!--
p {
margin: 30px 5px;
padding: 5px;
}
.c1 {
border-style: solid;
border-width: 3px;
}
.c2 {
border-style: solid;
border-width: 10px;
}
.c3 {
border-style: solid;
border-width: thick;
}
.c4 {
border-style: solid;
border-width: thin;
}
.c5 {
border-style: solid;
border-width: thin thick 5px 30px;
}
//-->
</style>
</head>
<body>
<p class="c1">
太さ3px<br>
</p>
<p class="c2">
太さ10px<br>
</p>
<p class="c3">
太さthick<br>
</p>
<p class="c4">
太さthin<br>
</p>
<p class="c5">
太さ 上thin 右thick 下5px 左30px<br>
</p>
</body>
</html>
〔 実行する 〕