<!DOCTYPE html>
<html>
<head>
<title>CSS border-width Property</title>
<style>
div {
background: #eee;
display: flex;
height: 30px;
margin-bottom: 10px;
align-items: center;
justify-content: center;
border-color: pink;
border-style: solid;
}
.border-1 {
border-width: medium;
}
.border-2 {
border-width: thin;
}
.border-3 {
border-width: thick;
}
.border-4 {
border-width: 5px;
}
.border-5 {
border-width: 5px 10px;
}
.border-6 {
border-width: 5px 10px 2px;
}
</style>
</head>
<body>
<div class="border-1">medium</div>
<div class="border-2">thin</div>
<div class="border-3">thick</div>
<div class="border-4">5px</div>
<div class="border-5">5px 10px</div>
<div class="border-6">5px 10px 2px</div>
</body>
</html>