Answers for "html row bottom border only"

CSS
4

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
0

put a border only on bottom

#element {
   border-bottom: 1px solid;
}
Posted by: Guest on January-16-2022

Code answers related to "html row bottom border only"

Browse Popular Code Answers by Language