Answers for "add border to the left of an element css"

CSS
2

css border left

.leftBorder {
  /*           width style color  */
  border-left: 5px solid black;
}
Posted by: Guest on October-29-2020
0

set border only left and right css

border-color: red green white blue;
border-style: solid dashed dotted solid;
border-width: 1px 2px 3px 4px;
Posted by: Guest on June-28-2021

Code answers related to "add border to the left of an element css"

Browse Popular Code Answers by Language