From http://www.w3schools.com (Copyright Refsnes Data)
The fieldset element is used to logically group together elements in a form, and draw a box around them.
HTML 5 has some new attributes, and some HTML 4.01 attributes are no longer supported.
Note: You can disable a fieldset with the new attribute: disabled.
Tip: Use the <legend> element to add a caption to the fieldset.
Source | Output |
---|---|
<fieldset> Height <input type="text" size="3" /> Weight <input type="text" size="3" /> </fieldset> |
Attribute | Value | Description | 4 | 5 |
---|---|---|---|---|
disabled | true | false | Defines if the fieldset is visible or not | 5 | |
form | true | false | Defines one ore more forms the fieldset belongs to | 5 |
class, contenteditable, contextmenu, dir, draggable, id, irrelevant, lang, ref, registrationmark, tabindex, template, title |
For a full description, go to Standard Attributes in HTML 5.
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 full description, go to Event Attributes in HTML 5.
Fieldset around
data
How to draw a border with a caption around your data.
From http://www.w3schools.com (Copyright Refsnes Data)