In CSS, you can do this:
input[type=submit] { // properties }
It\'s a very useful for styling form buttons.
How do you do the same th
This converter website says:
input[type=submit] // properties
You can also nest it like this
input &[type="submit"] .... &[type="search"] ....