Identify a syntax that displays a selection list as a scroll box with 5 options visible in the web form. -
Answers <select size="5"> ... </select>
Identify the widget that limits a numeric field to a range of possible values by allowing users to drag a
marker horizontally across the possible field values. - Answers Slider control
Command buttons are created using the input element with the type attribute set to _____. - Answers
button
A data entry control is associated with a _____ in which data values supplied by the user are stored. -
Answers data field
Which of the following is true of field sets? - Answers Field sets act like block elements that can expand
to accommodate their content.
Identify a pseudo-class for a check box or option button whose toggle states cannot be ascertained. -
Answers indeterminate
A form contains _____, also called widgets, which are the objects that allow the user to interact with the
form. - Answers controls
Identify the type of control that performs an action. - Answers A form button
Identify the cross-browser style sheet that changes the text color of the placeholder text for every input
box to light red for the moz extension. - Answers input::-moz-placeholder {color: rgb(255, 151, 151);}
A _____ is a control used to enter text strings that may include several lines of content. - Answers Text
area box
Identify the significance of "text" in <form id="text">. - Answers It identifies the form
The technique of immediate data validation and reporting of errors is known as _____. - Answers inline
validation
HTML supports the _____ attributes to set the text area size. - Answers rows and cols
Identify an attribute that can be added to the input element to validate a text value against a regular
expression. - Answers pattern="regex"
Which of the following is true of nesting a control within a label? - Answers It allows the user to move
both the label text and the control as a single unit around the page.
It treats both the label and control as separate objects.