ricardozea
3/16/2016 - 6:26 PM

Partial CSS selectors. Taken from this nice article: https://medium.com/the-web-crunch-publication/advanced-css-selectors-you-never-knew-ab

/* Begins with (^=) */
div[class^="myPanel_"] {}

/* Ends With ($=) */
div[id$="_myDiv"] {}

/* Contains (*=) */
div[class*="logoutPanel"] {}