how to give a border on left and right code example
Example 1: css border right
.rightBorder {
/* width style color */
border-right: 5px solid black;
}
Example 2: css border-left
p {
border-left: 10px inset green;
}
h1 {
border-left: 15px solid blue;
}