Home >Web Front-end >CSS Tutorial >Can CSS Create Partial Borders Without Extra Elements?
Overcoming Border Length Limitations
Question:
Is there a method to restrict the extent of a border? Notably, a
Answer:
CSS generated content offers a solution:
div { position: relative; } /* Main div for border to extend to 50% from bottom left corner */ div:after { content: ""; background: black; position: absolute; bottom: 0; left: 0; height: 50%; width: 1px; }
<div>Lorem Ipsum</div>
The above is the detailed content of Can CSS Create Partial Borders Without Extra Elements?. For more information, please follow other related articles on the PHP Chinese website!