Is it possible to apply a style to an HTML element using only its title as a unique identifier? For example:
What you are looking for is css attribute selectors:
http://www.w3.org/TR/CSS2/selector.html#attribute-selectors
a[title] { ... }