css

advanced selectors

attribute selectors i used it in registration form wp_members http://www.w3schools.com/css/css_attribute_selectors.asp how can i select first second or third element with given class name using CSS? table.myClass tr > td:first-child /* First column */ { /* some style here */ } table.myClass tr > td:first-child+td /* Second column */ { /* some style here */ }… Continue reading advanced selectors