DEV Community

Discussion on: Checkboxes can be excellent buttons

Collapse
 
aardrian profile image
Adrian Roselli

I know the scope of this post is not about CSS selectors, but I want to note for readers that they can also use CSS instead of JavaScript to achieve the same outcome.

codepen.io/aardrian/pen/NWNovdQ

#doublewide:checked ~ #box {
  width: 100px;
}
#doublehigh:checked ~ #box {
  height: 100px;
}