Skip to content

Alex Carpenter

Stop vertically aligning your checkboxes with center. Instead use baseline to keep it aligned with the first line of the label text.

label {
  display: flex;
  align-items: center;
  align-items: baseline;
}