Answers for "make left border certain widht css"

CSS
2

css border different sides

/*className     property     values: width style color*/
.rightBorder  { border-right: 1px solid black }

.leftBorder   { border-left: 2px dashed red }

.topBorder    { border-top: 3px dotted blue }

.bottomBorder { border-bottom: 4px double yellow }
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

Browse Popular Code Answers by Language