1 Flexbox
Flexbox lays items along one axis. Set display:flex and control alignment with justify-content and align-items.
.row {
display: flex; gap: 12px;
justify-content: space-between; align-items: center;
}
.row > div { flex: 1; background:#dbeafe; padding:10px; }