<!DOCTYPE html>
<html lang="en-US">
<head>
<style>
div{
border-style: solid;
}
#point{
border-bottom-width: thin;
}
#point1{
border-bottom-width: medium;
}
#point2{
border-bottom-width: thick;
}
#point3{
border-bottom-width: 5px;
}
</style>
</head>
<body>
<h1>CSS border-bottom-width Property</h1>
<h2>border-bottom-width: thin;</h2>
<div id="point">
This is div container.
</div>
<h2>border-bottom-width: medium;</h2>
<div id="point1">
This is div container.
</div>
<h2>border-bottom-width: thick;</h2>
<div id="point2">
This is div container.
</div>
<h2>border-bottom-width: 5px;</h2>
<div id="point3">
This is div container.
</div> </body>
</html>