The span[class~="sr-only"] selector will select any span element whose class includes sr-only. Create that selector, and give it a border property set to 0.
span[class~="sr-only"] {
border: 0;
}
Just want to spend this life happier.
The span[class~="sr-only"] selector will select any span element whose class includes sr-only. Create that selector, and give it a border property set to 0.
Comments
Post a Comment