2
如何中間/中間對齊不同寬度的邊框?不同寬度的中間對齊(中央)邊框
HTML
<div>
<span class="large">This is </span><span class="small">a test!</span>
</div>
CSS
.large {
border-bottom: 5px solid blue;
}
.small {
border-bottom: 1px solid green
}
在這裏看到: https://jsfiddle.net/ybgeL9rf/
我想1px的邊框對齊到5px的邊框的正中間(而不是頂部)。
大和簡單的解決方案! – SaidbakR
當這是一個簡單的解決方案時,我總是覺得很蠢,謝謝! – Aegix
@Eegix,簡單易懂是答案的關鍵。人們過度思考。 – LinkinTED