<fieldset> Label
Definitions and usage
The FIELDSET element groups the related elements within the form.
<fieldset> Label packs a portion of the form's content to produce a field for a set of related forms. <fieldset> labels do not have required or unique properties.
When a set of form elements is placed inside a <fieldset> label, the browser displays them in a special way that may have special boundaries, 3D effects, or even create a subform to handle the elements.
Differences between HTML 4.01 and HTML 5
There are new properties in HTML 5, and some properties in HTML 4.01 are no longer supported.
Property
Property Value Description 4 5 disabled true | False to define whether fieldset is visible. 5 Form True | False defines one or more forms that the fieldset belongs to. &http://www.aliyun.com/zixun/aggregation/37954.html ">nbsp; 5
Standard properties
Class, Contenteditable, ContextMenu, dir, draggable, id, irrelevant, lang, ref, Registrationmark, TabIndex, template, For a complete description of the title, please visit the standard properties in HTML 5.
Event Properties
Onabort, onbeforeunload, onblur, onchange, onclick, OnContextMenu, ondblclick, Ondrag, Ondragend, OnDragEnter, OnDragLeave, OnDragOver, ondragstart, OnDrop, OnError, onfocus, onkeydown, onkeypress, onkeyup, onload, OnMessage, OnMouseDown, OnMouseMove, onmouseover, onmouseout, onmouseup, OnMouseWheel, OnResize, Onscroll, Onselect, onsubmit, OnUnload for a complete description, visit the event properties in HTML 5.
Tiy instance, around the fieldset of the data
This example shows how to draw a box with a caption around the data.
<html>
<body>
<fieldset>
<legend> Health Information: Wind Network (www.ithov.com) </legend>
<form>
<label> Height: <input type= "Text"/></label>
<label> Weight: <input type= "Text"/></label>
</form>
</fieldset>
<p> if there is no border around the form, your browser is too old. Download new browser to Wind network (www.ithov.com) </p>
</body>
</html>