CSS: inline-block not aligned at top

By Xah Lee. Date: .

took one hour to debug this css.

css inline-block not aligned 2026-06-05 212fa
css inline-block not aligned 2026-06-05 212fa

when you have box-sizing: border-box; and then, inline-block boxes may not align on a horizontal line at top.

they need to vertical-align: top

.rvYQW {
 display: inline-block;
 vertical-align: top;
}