建立邊框疊加子div
要為子div建立邊框疊加效果,可以考慮使用偽元素。這種方法有幾個優點:
實作範例:
body { background: grey; } .button { background: #94c120; width: 200px; height: 50px; margin: 50px; position: relative; } .button:before { content: ""; position: absolute; top: -15px; left: -15px; width: 100%; height: 100%; border: 5px solid #fff; box-sizing: border-box; }
<div class="button"> some text </div>
以上是如何為具有偽元素的子 Div 建立邊框疊加?的詳細內容。更多資訊請關注PHP中文網其他相關文章!