下文笔者讲述CSS边框宽度的简介及示例说明
CSS边框宽度的功能
用于设置边框的宽度
宽度的单位可以是:px、pt、cm、em
也可以是 thin、medium 或 thick这三个预设值
例
<!DOCTYPE html>
<html lang="en">
<head>
<title>CSS 边框样式-linux28.com</title>
<style>
p.one {
border-style: solid;
border-width: 5px;
}
p.two {
border-style: solid;
border-width: medium;
}
p.three {
border-style: dotted;
border-width: 2px;
}
p.four {
border-style: dotted;
border-width: thick;
}
p{
width:100px;
height:100px;
margin:10px;
}
</style>
</head>
<body>
<p class="one"></p>
<p class="two"></p>
<p class="three"></p>
<p class="four"></p>
</body>
</html>