Answers for "css select without attribute"

CSS
1

css selector no attribute

input:not([type]) {
   /* style here */
}
Posted by: Guest on January-21-2020
0

javascript select element that does not have attribute

a:not([class]), a[class=""]{
    color: blue;
}
Posted by: Guest on September-28-2020

Browse Popular Code Answers by Language