div[class*="col-"]{ color: green; }
Note that this selector is different as it references a class attribute that starts with the word.
div[class^="col-"]{ color: green; }
Web Development Notes
div[class*="col-"]{ color: green; }
Note that this selector is different as it references a class attribute that starts with the word.
div[class^="col-"]{ color: green; }