type__error’s avatartype__error’s Twitter Archive—№ 3,879

  1. Today I learned about the tilde operator in CSS (~) which lets you select sibling elements in a selector! .myButton ~ .myClass {...} will apply to elements with the class myClass which appear in the same parent container as .myButton!