Answers for "border bottom and top"

CSS
3

css border bottom

.bottomBorder {
  /*           width style color  */
  border-bottom: 5px solid black;
}
Posted by: Guest on October-29-2020
2

half border bottom

div {
    width: 500px;
    height: 100px;
    position: relative;
    padding-top: 20px;
    margin-top: 50px;
}

div::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    width: 50%;
    left: 25%;
    border-top: 1px solid red;
}
Posted by: Guest on September-12-2020
1

css border only top and bottom

#element{
  border-left:none;
  border-right:none;
}
Posted by: Guest on May-26-2021

Code answers related to "border bottom and top"

Browse Popular Code Answers by Language