Removes a class from all elements of this Iterable of Elements.
void removeClass(String clazz) { for (var e in this) { e.classes.remove(clazz); } }