fondo de borde de CSS
.bottomBorder {
/* width style color */
border-bottom: 5px solid black;
}
Objectively Hilarious
.bottomBorder {
/* width style color */
border-bottom: 5px solid black;
}
.topBorder {
/* width style color */
border-top: 5px solid black;
}
div {
border-bottom: 4px dashed blue;
background-color: gold;
height: 100px;
width: 100px;
font-weight: bold;
text-align: center;
}
.selector {
border-bottom: 5px solid red;
}