CSS: inline-block not aligned at top
took one hour to debug this css.
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; }