WP CSS Coding Standards There are a number of inconsistencies in the CSS codebase of WordPress. This survey is intended to help in building a consensus. You can review the existing CSS Coding Standards at http://codex.wordpress.org/CSS_Coding_Standards What is your handle on WordPress.org?*You know, that thing you log in with.Which should be the proper way to write an attribute selector?*http://www.w3.org/TR/css3-selectors/#attribute-selectorsinput[type=text] { /* don't quote the value */ }input[type='text'] { /* single quote the value */ }input[type="text"] { /* double quote the value */ }What is the proper way to specify the background-image for an element?*http://www.w3.org/TR/2012/CR-css3-background-20120417/#the-background-image#header { background-image: url( img/thing.png ); } /* don't quote the value */#header { background-image: url( 'img/thing.png' ); } /* single quote the value */#header { background-image: url( "img/thing.png" ); } /* double quote the value */#header { background-image: url(img/thing.png); } /* don't quote the value, no spaces in parentheses */#header { background-image: url('img/thing.png'); } /* single quote the value, no spaces in parentheses */#header { background-image: url("img/thing.png"); } /* double quote the value, no spaces in parentheses */What is the proper way to specify a decimal value?*#header { background: rgba( 0, 0, 0, 0.6 ); } /* With a leading zero */#header { background: rgba( 0, 0, 0, .6 ); } /* Without a leading zero */Are there any other CSS inconsistencies that you've noticed?