Which of the following CSS selectors is faster?
input[type="submit"] {
/* styles */
}
or
[type="submit"] {
/* styles */
}
Just Curious!
Which of the following CSS selectors is faster?
input[type="submit"] {
/* styles */
}
or
[type="submit"] {
/* styles */
}
Just Curious!