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