# 2025-04-16-1

Published: Wed, Apr 16, 2025
Tags: css, tip

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

```scss
label {
  display: flex;
  align-items: center; // [!code --]
  align-items: baseline; // [!code ++]
}
```
