Posts Tagged ‘enabled’
-
200713 Dec
Posted in Tutorials
For those of you that haven’t seen, Dev Opera has just published a two part article series on styling form controls, by Christopher Schmitt. The first part covers using attribute selectors (which work in IE7, Opera, Safari and Firefox) to slim down your markup by providing a way to identify certain form controls without the addition of a class value. An example of this is using
input[type="text"]
in the CSS, rather than addingclass="text"
to the HTML file. The second part takes this further, by taking advantage of the:enabled
,:disabled
and:checked
pseudo-classes, and a dash ofopacity
. The browser support for these pseudo-classes are not as strong however. According to Christopher, Opera is the only browser that supports all three correctly.If you are not aware of Dev Opera (known lovingly as Devo internally at Opera), it is Opera’s new developer site. Look out for a fantastic article on CSS3 from CSS3.info’s very own Peter Gasston in the near future.