Partial CSS selectors.
Taken from this nice article: https://medium.com/the-web-crunch-publication/advanced-css-selectors-you-never-knew-about-972d8275d079
/* Begins with (^=) */
div[class^="myPanel_"] {}
/* Ends With ($=) */
div[id$="_myDiv"] {}
/* Contains (*=) */
div[class*="logoutPanel"] {}