Skip to content

Alex Carpenter

Staff UI Engineer at Clerk

Grand Rapids, MI.

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;
}