css selctor without attr code example
Example 1: css selector no attribute
input:not([type]) {
/* style here */
}
Example 2: javascript select element that does not have attribute
a:not([class]), a[class=""]{
color: blue;
}
input:not([type]) {
/* style here */
}
a:not([class]), a[class=""]{
color: blue;
}