Fieldset
Use a fieldset to group related form inputs.
When to use a fieldset
Use a fieldset when you need to show a relationship between multiple form inputs. For example, you may need to group a set of text inputs into a single fieldset when asking for an address.
<fieldset class="hs2-fieldset">
<legend class="hs2-fieldset__legend hs2-fieldset__legend--l">
<h1 class="hs2-fieldset__heading">
What is your address?
</h1>
</legend>
<div class="hs2-form-group">
<label class="hs2-label" for="address-line-1">
Building and street <span class="hs2-u-visually-hidden">line 1 of 2</span>
</label>
<input class="hs2-input" id="address-line-1" name="address-line-1" type="text">
</div>
<div class="hs2-form-group">
<label class="hs2-label" for="address-line-2">
<span class="hs2-u-visually-hidden">Building and street line 2 of 2</span>
</label>
<input class="hs2-input" id="address-line-2" name="address-line-2" type="text">
</div>
<div class="hs2-form-group">
<label class="hs2-label" for="address-town">
Town or city
</label>
<input class="hs2-input hs2-u-width-two-thirds" id="address-town" name="address-town" type="text">
</div>
<div class="hs2-form-group">
<label class="hs2-label" for="address-county">
County
</label>
<input class="hs2-input hs2-u-width-two-thirds" id="address-county" name="address-county" type="text">
</div>
<div class="hs2-form-group">
<label class="hs2-label" for="address-postcode">
Postcode
</label>
<input class="hs2-input hs2-input--width-10" id="address-postcode" name="address-postcode" type="text">
</div>
</fieldset>
Nunjucks macro options
Use options to customise the appearance, content and behaviour of a component when using a macro, for example, changing the text.
Some options are required for the macro to work; these are marked as "Required" in the option description.
If you're using Nunjucks macros in production with "html" options, or ones ending with "html", you must sanitise the HTML to protect against cross-site scripting exploits.
Name | Type | Required | Description |
---|---|---|---|
Name describedBy | Type string | Required false | Description One or more element IDs to add to the `aria-describedby` attribute, used to provide additional descriptive information for screenreader users. |
Name legend | Type object | Required false | Description Options for the legend |
Name legend{}.text | Type string | Required true | Description If `html` is set, this is not required. Text to use within the legend. If `html` is provided, the `text` argument will be ignored. |
Name legend{}.html | Type string | Required true | Description If `text` is set, this is not required. HTML to use within the legend. If `html` is provided, the `text` argument will be ignored. |
Name legend{}.classes | Type string | Required false | Description Classes to add to the legend. |
Name legend{}.isPageHeading | Type boolean | Required false | Description Whether the legend also acts as the heading for the page. |
Name classes | Type string | Required false | Description Classes to add to the fieldset container. |
Name attributes | Type object | Required false | Description HTML attributes (for example data attributes) to add to the fieldset container. |
{% from 'fieldset/macro.njk' import fieldset %}
{% from "input/macro.njk" import input %}
{% call fieldset({
legend: {
"text": "What is your address?",
"classes": "hs2-fieldset__legend--l",
"isPageHeading": true
}
}) %}
{{ input({
label: {
"html": 'Building and street <span class="hs2-u-visually-hidden">line 1 of 2</span>'
},
"id": "address-line-1",
"name": "address-line-1"
}) }}
{{ input({
label: {
"html": '<span class="hs2-u-visually-hidden">Building and street line 2 of 2</span>'
},
"id": "address-line-2",
"name": "address-line-2"
}) }}
{{ input({
label: {
"text": "Town or city"
},
"classes": "hs2-u-width-two-thirds",
"id": "address-town",
"name": "address-town"
}) }}
{{ input({
label: {
"text": "County"
},
"classes": "hs2-u-width-two-thirds",
"id": "address-county",
"name": "address-county"
}) }}
{{ input({
label: {
"text": "Postcode"
},
"classes": "hs2-input--width-10",
"id": "address-postcode",
"name": "address-postcode"
}) }}
{% endcall %}
How to use a fieldset
The 1st element in a fieldset must be a legend
which describes the group of inputs. This could be a question, such as "What is your address?" or a statement like "Personal details".
Read more about why and how to set legends as headings on the GOV.UK Design System.
<fieldset class="hs2-fieldset">
<legend class="hs2-fieldset__legend hs2-fieldset__legend--xl">
<h1 class="hs2-fieldset__heading">
What is your address?
</h1>
</legend>
</fieldset>
Nunjucks macro options
Use options to customise the appearance, content and behaviour of a component when using a macro, for example, changing the text.
Some options are required for the macro to work; these are marked as "Required" in the option description.
If you're using Nunjucks macros in production with "html" options, or ones ending with "html", you must sanitise the HTML to protect against cross-site scripting exploits.
Name | Type | Required | Description |
---|---|---|---|
Name describedBy | Type string | Required false | Description One or more element IDs to add to the `aria-describedby` attribute, used to provide additional descriptive information for screenreader users. |
Name legend | Type object | Required false | Description Options for the legend |
Name legend{}.text | Type string | Required true | Description If `html` is set, this is not required. Text to use within the legend. If `html` is provided, the `text` argument will be ignored. |
Name legend{}.html | Type string | Required true | Description If `text` is set, this is not required. HTML to use within the legend. If `html` is provided, the `text` argument will be ignored. |
Name legend{}.classes | Type string | Required false | Description Classes to add to the legend. |
Name legend{}.isPageHeading | Type boolean | Required false | Description Whether the legend also acts as the heading for the page. |
Name classes | Type string | Required false | Description Classes to add to the fieldset container. |
Name attributes | Type object | Required false | Description HTML attributes (for example data attributes) to add to the fieldset container. |
{% from 'fieldset/macro.njk' import fieldset %}
{{ fieldset({
"legend": {
"text": "What is your address?",
"classes": "hs2-fieldset__legend--xl",
"isPageHeading": true
}
}) }}
Accessibility
On question pages containing a group of inputs, include the question as the legend as that helps screenreader users understand that the inputs are all related to that question.
Put any important general help text that cannot be written as hint text in the legend, but try to keep it as concise as possible.