克服邊框長度限制
問題:
有沒有辦法限制範圍邊界邊界?值得注意的是,
答案:
CSS 產生的內容提供了解決方案:
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>
以上是CSS 可以在沒有額外元素的情況下建立部分邊框嗎?的詳細內容。更多資訊請關注PHP中文網其他相關文章!