Page 309 - DCAP109_GRAPHIC_TOOLS
P. 309
Graphic Tools
Notes When you place a multiline text field on a form, you can specify how text entered into that field
should wrap. You indicate this using the wrap field in the Properties panel. The various options
available are:
z Default: The scrolling characteristics of the multiline text field is determined by the
browser.
z Off: Text entered into a multiline text field keeps scrolling until the user presses Enter.
z Virtual: Text on the screen wraps when it reaches the right edge of the text area, but not
when the response is submitted to the server.
z Physical: Text wraps on the screen and converts the soft returns on the screen to hard
returns when the data is submitted to the server.
Figure 13.7: Wrap Option in Properties Box
Source: http://www.siteground.com/tutorials/dreamweaver/dreamweaver_tables.htm
13.2.7 Grouping Form Controls
The <fieldset> tag is used to group related elements in a form. It draws a box around the related
elements. The <legend> tag defines a caption for the <fieldset> element.
Example:
<form>
<fieldset>
<legend>Personalia:</legend>
Name: <input type=”text”><br>
Email: <input type=”text”><br>
Date of birth: <input type=”text”>
</fieldset>
</form>
Output
Source: http://www.w3schools.com/tags/tryit.asp?filename=tryhtml_fieldset
302 LOVELY PROFESSIONAL UNIVERSITY