<!DOCTYPE html>
<html>
<head>
<title>CSS border-bottom Property</title>
<style>
div {
background: #eee;
display: flex;
height: 30px;
margin-bottom: 10px;
align-items: center;
justify-content: center;
}
.border-1 {
border-bottom: 5px solid pink;
}
.border-2 {
border-bottom: 5px dashed pink;
}
.border-3 {
border-bottom: 5px dotted pink;
}
.border-4 {
border-bottom: 5px double pink;
}
.border-5 {
border-bottom: 5px groove pink;
}
.border-6 {
border-bottom: 5px ridge pink;
}
.border-7 {
border-bottom: 5px inset pink;
}
.border-8 {
border-bottom: 5px outset pink;
}
.border-9 {
border-bottom: 5px hidden pink;
}
.border-10 {
border-bottom: none;
}
</style>
</head>
<body>
<div class="border-1">solid</div>
<div class="border-2">dashed</div>
<div class="border-3">dotted</div>
<div class="border-4">double</div>
<div class="border-5">groove</div>
<div class="border-6">ridge</div>
<div class="border-7">inset</div>
<div class="border-8">outset</div>
<div class="border-9">hidden</div>
<div class="border-10">none</div>
</body>
</html>