Make Border Bottom Half Width Code Example


Example: 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;
}

Comments

Popular posts from this blog

530 Valid Hostname Is Expected When Setting Up IIS 10 For Multiple Sites

C Perror Example

Converting A String To Int In Groovy