防止CSS 中出現雙邊框
對於兩個帶有邊框的相鄰div,它們相交的地方可能看起來像有雙邊框。要解決此問題,請考慮以下方法:
使用輪廓而不是邊框
<code class="css">.collection .child { outline: 1px solid; }</code>
<code class="css">.collection .child { outline: 1px solid; margin-top: 1px; margin-left: 1px; }</code>
使用帶有邊框的負邊距
使用帶有邊框的負邊距
<code class="css">.collection .child { margin-top: -1px; margin-left: -1px; }</code>
或者,您可以保留邊框並使用負邊距來減少重疊:
請注意,此選項可能並不適合所有場景,特別是當div 具有可變高度或寬度時.以上是使用鄰近 Div 時如何防止 CSS 中出現雙邊框?的詳細內容。更多資訊請關注PHP中文網其他相關文章!