Daily Shaarli

All links of one day in a single page.

August 5, 2020

Pure CSS Custom Checkbox Style | Modern CSS Solutions

A nice code snippet here :

.checkbox__input {
  display: grid;
  grid-template-areas: "checkbox";

  > * {
    grid-area: checkbox;
  }
}

This will put all children in the same area; and will behave as a position: absolute, but with the power of Grid