The creation of customized form fields is a simple process of adjusting the specific parts of the form. There are three main areas of the form: input, select, and textarea. They control different aspects of the form. The input controls the boxes which requires hand-typing information. The select has dominion over drop down menus and other predefined options which users often are required to click on. The textarea option is what controls what is usually considered the comments box, which is a large input area where there is no defined information required to be entered.
To modify the default code for forms, the specific parts may be combined as a single CSS function for easier and uniformed change.
input,select,textarea { }
|