CanaryNoir
3/11/2014 - 2:48 PM

Misc CSS

Misc CSS

STARTS WITH 
a[id^='something']

CONTAINS:
a[id*='Some:Same']

ENDS WITH
a[id$='name']

COMBINED:
a[id*='Some:Same'][id$='name']
nav { display: table; }
nav > ul { display: table-row; }
nav > ul > li { display: table-cell; }