In CSS, these both work:

1. [type="checkbox"]
2. [type=checkbox]

But which is actually correct? 🤔

@ivorjetski I would say the first one is safer to use in case you have spaces in the attribute (which is not the case with type that's why both are the same)
@css oOh yes! Of course! This is perfect, thank you 😊