//the following example selects all elements with a title attribute that contains a space-separated list of words, one of which is "flower"
[title~="flower"] {
border: 5px solid yellow;
}
Is used to select elements with an attribute value containing a specified word.