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