Answers for "css curved border bottom"

CSS
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
0

how to add curved border in css

border-radius: 10px;
Posted by: Guest on August-18-2021

Browse Popular Code Answers by Language