how to make border top and bottom css code example
Example 1: css border bottom
.bottomBorder {
/* width style color */
border-bottom: 5px solid black;
}
Example 2: css border only top and bottom
#element{
border-left:none;
border-right:none;
}