If a user hovers a cursor over an input field, a text box may appear that can have directions on what should go into the field. Which attribute do you add this to?
In the input element, use the title attribute
What attribute allows you to specify tab order in a browser?
tabindex
How do you associate a label with an input box?
Use the ‘for’ attribute
How can we normalise some of the styling on input boxes between say safari and firefox?
Use
-webkit-appearance: none
-moz-appearance:none
will turn off the clever rounding of buttons that make them look different between browsers.