@patternfly/patternfly
Version:
Assets, source, tooling, and content for PatternFly 4
868 lines (829 loc) • 36.8 kB
Markdown
---
id: Form
section: components
subsection: forms
cssPrefix: pf-v5-c-form
---## Examples
### Vertically aligned labels
```html
<form class="pf-v5-c-form" novalidate>
<div class="pf-v5-c-form__group">
<div class="pf-v5-c-form__group-label"><label class="pf-v5-c-form__label" for="form-vertical-name">
<span class="pf-v5-c-form__label-text">Name</span> <span class="pf-v5-c-form__label-required" aria-hidden="true">*</span></label> <span
class="pf-v5-c-form__group-label-help"
aria-label="More information for name field"
aria-describedby="form-vertical-name"
role="button"
type="button"
tabindex="0"
><i class="pf-v5-pficon pf-v5-pficon-help" aria-hidden="true"></i></span>
</div>
<div class="pf-v5-c-form__group-control">
<span class="pf-v5-c-form-control pf-m-required">
<input
required
type="text"
id="form-vertical-name"
name="form-vertical-name"
/>
</span>
</div>
</div>
</form>
```
### Horizontally aligned labels
```html
<form class="pf-v5-c-form pf-m-horizontal" novalidate>
<div class="pf-v5-c-form__group">
<div class="pf-v5-c-form__group-label"><label class="pf-v5-c-form__label" for="form-horizontal-name">
<span class="pf-v5-c-form__label-text">Name</span> <span class="pf-v5-c-form__label-required" aria-hidden="true">*</span></label>
</div>
<div class="pf-v5-c-form__group-control">
<span class="pf-v5-c-form-control pf-m-required">
<input
required
type="text"
id="form-horizontal-name"
name="form-horizontal-name"
/>
</span>
</div>
</div>
<div class="pf-v5-c-form__group">
<div class="pf-v5-c-form__group-label"><label class="pf-v5-c-form__label" for="form-horizontal-info">
<span class="pf-v5-c-form__label-text">Information</span></label> <span
class="pf-v5-c-form__group-label-help"
aria-label="More information for information field"
aria-describedby="form-horizontal-info"
role="button"
type="button"
tabindex="0"
><i class="pf-v5-pficon pf-v5-pficon-help" aria-hidden="true"></i></span>
</div>
<div class="pf-v5-c-form__group-control">
<span class="pf-v5-c-form-control">
<textarea
type="text"
id="form-horizontal-info"
name="form-horizontal-info"
aria-label="Textarea example"
></textarea>
</span>
</div>
</div>
<div
class="pf-v5-c-form__group"
role="group"
aria-labelledby="form-horizontalform-horizontal-checkbox-legend"
>
<div
class="pf-v5-c-form__group-label pf-m-no-padding-top"
id="form-horizontalform-horizontal-checkbox-legend"
><span class="pf-v5-c-form__label">
<span class="pf-v5-c-form__label-text">Label (no top padding)</span></span> <span
class="pf-v5-c-form__group-label-help"
aria-label="More information for label field"
aria-describedby="form-horizontal-checkbox-legend"
role="button"
type="button"
tabindex="0"
><i class="pf-v5-pficon pf-v5-pficon-help" aria-hidden="true"></i></span>
</div>
<div class="pf-v5-c-form__group-control pf-m-stack">
<div class="pf-v5-c-check">
<input
class="pf-v5-c-check__input"
type="checkbox"
id="form-horizontal-checkbox"
name="form-horizontal-checkbox"
/>
<label
class="pf-v5-c-check__label"
for="form-horizontal-checkbox"
>Option 1</label>
</div>
<div class="pf-v5-c-check">
<input
class="pf-v5-c-check__input"
type="checkbox"
id="form-horizontal-checkbox2"
name="form-horizontal-checkbox2"
/>
<label
class="pf-v5-c-check__label"
for="form-horizontal-checkbox2"
>Option 2</label>
</div>
</div>
</div>
</form>
```
### Horizontal layout at a custom breakpoint
```html
<form class="pf-v5-c-form pf-m-horizontal-on-sm" novalidate>
<div class="pf-v5-c-form__group">
<div class="pf-v5-c-form__group-label"><label
class="pf-v5-c-form__label"
for="form-horizontal-custom-breakpoint-name"
>
<span class="pf-v5-c-form__label-text">Name</span> <span class="pf-v5-c-form__label-required" aria-hidden="true">*</span></label> <span
class="pf-v5-c-form__group-label-help"
aria-label="More information for name field"
aria-describedby="form-horizontal-custom-breakpoint-name"
role="button"
type="button"
tabindex="0"
><i class="pf-v5-pficon pf-v5-pficon-help" aria-hidden="true"></i></span>
</div>
<div class="pf-v5-c-form__group-control">
<span class="pf-v5-c-form-control pf-m-required">
<input
required
type="text"
id="form-horizontal-custom-breakpoint-name"
name="form-horizontal-custom-breakpoint-name"
/>
</span>
</div>
</div>
</form>
```
### Form sections
```html
<form class="pf-v5-c-form" novalidate>
<section class="pf-v5-c-form__section" role="group">
<div class="pf-v5-c-form__group">
<div class="pf-v5-c-form__group-label"><label
class="pf-v5-c-form__label"
for="form-section-example-section-1-input"
>
<span class="pf-v5-c-form__label-text">Form section 1 inputs</span></label>
</div>
<div class="pf-v5-c-form__group-control">
<span class="pf-v5-c-form-control pf-m-required">
<input
required
type="text"
id="form-section-example-section-1-input"
name="form-section-example-section-1-input"
/>
</span>
</div>
</div>
<div class="pf-v5-c-form__group">
<div class="pf-v5-c-form__group-label"><label
class="pf-v5-c-form__label"
for="form-section-example-section-1-input-2"
>
<span class="pf-v5-c-form__label-text">Form section 1 inputs</span></label>
</div>
<div class="pf-v5-c-form__group-control">
<span class="pf-v5-c-form-control pf-m-required">
<input
required
type="text"
id="form-section-example-section-1-input-2"
name="form-section-example-section-1-input-2"
/>
</span>
</div>
</div>
</section>
<section
class="pf-v5-c-form__section"
role="group"
aria-labelledby="form-section-example-section-2-title"
>
<div
class="pf-v5-c-form__section-title"
id="form-section-example-section-2-title"
aria-hidden="true"
>Section 2 title (optional)</div>
<div class="pf-v5-c-form__group">
<div class="pf-v5-c-form__group-label"><label
class="pf-v5-c-form__label"
for="form-section-example-section-2-input"
>
<span class="pf-v5-c-form__label-text">Form section 2 inputs</span></label>
</div>
<div class="pf-v5-c-form__group-control">
<span class="pf-v5-c-form-control pf-m-required">
<input
required
type="text"
id="form-section-example-section-2-input"
name="form-section-example-section-2-input"
/>
</span>
</div>
</div>
<div class="pf-v5-c-form__group">
<div class="pf-v5-c-form__group-label"><label
class="pf-v5-c-form__label"
for="form-section-example-section-2-input-2"
>
<span class="pf-v5-c-form__label-text">Form section 2 inputs</span></label>
</div>
<div class="pf-v5-c-form__group-control">
<span class="pf-v5-c-form-control pf-m-required">
<input
required
type="text"
id="form-section-example-section-2-input-2"
name="form-section-example-section-2-input-2"
/>
</span>
</div>
</div>
</section>
</form>
```
### Help text
```html
<form class="pf-v5-c-form" novalidate>
<div class="pf-v5-c-form__group">
<div class="pf-v5-c-form__group-label"><label class="pf-v5-c-form__label" for="form-help-text-name">
<span class="pf-v5-c-form__label-text">Name</span> <span class="pf-v5-c-form__label-required" aria-hidden="true">*</span></label>
</div>
<div class="pf-v5-c-form__group-control">
<span class="pf-v5-c-form-control pf-m-required">
<input
required
type="text"
id="form-help-text-name"
name="form-help-text-name"
aria-describedby="form-help-text-name-helper"
/>
</span>
<div class="pf-v5-c-form__helper-text" aria-live="polite">
<div class="pf-v5-c-helper-text">
<div
class="pf-v5-c-helper-text__item"
id="form-help-text-name-helper"
>
<span class="pf-v5-c-helper-text__item-text">This is helper text.</span>
</div>
</div>
</div>
</div>
</div>
<div class="pf-v5-c-form__group">
<div class="pf-v5-c-form__group-label"><label class="pf-v5-c-form__label" for="form-help-text-email">
<span class="pf-v5-c-form__label-text">E-mail</span> <span class="pf-v5-c-form__label-required" aria-hidden="true">*</span></label>
</div>
<div class="pf-v5-c-form__group-control">
<span class="pf-v5-c-form-control pf-m-warning">
<input
required
type="text"
id="form-help-text-email"
name="form-help-text-email"
aria-describedby="form-help-text-email-helper"
/>
<span class="pf-v5-c-form-control__utilities">
<span class="pf-v5-c-form-control__icon pf-m-status">
<i class="fas fa-exclamation-triangle" aria-hidden="true"></i>
</span>
</span>
</span>
<div class="pf-v5-c-form__helper-text" aria-live="polite">
<div class="pf-v5-c-helper-text">
<div
class="pf-v5-c-helper-text__item pf-m-warning"
id="form-help-text-email-helper"
>
<span
class="pf-v5-c-helper-text__item-text"
>This is helper text for a warning input.</span>
</div>
</div>
</div>
</div>
</div>
<div class="pf-v5-c-form__group">
<div class="pf-v5-c-form__group-label"><label class="pf-v5-c-form__label" for="-address">
<span class="pf-v5-c-form__label-text">Address</span> <span class="pf-v5-c-form__label-required" aria-hidden="true">*</span></label>
</div>
<div class="pf-v5-c-form__group-control">
<span class="pf-v5-c-form-control pf-m-required pf-m-error">
<input
required
type="text"
id="-address"
name="-address"
aria-invalid="true"
aria-describedby="-address-helper"
/>
<span class="pf-v5-c-form-control__utilities">
<span class="pf-v5-c-form-control__icon pf-m-status">
<i class="fas fa-exclamation-circle" aria-hidden="true"></i>
</span>
</span>
</span>
<div class="pf-v5-c-form__helper-text" aria-live="polite">
<div class="pf-v5-c-helper-text">
<div
class="pf-v5-c-helper-text__item pf-m-error"
id="-address-helper"
>
<span
class="pf-v5-c-helper-text__item-text"
>This is helper text for an invalid input.</span>
</div>
</div>
</div>
</div>
</div>
<div class="pf-v5-c-form__group">
<div class="pf-v5-c-form__group-label"><label class="pf-v5-c-form__label" for="form-help-text-comment">
<span class="pf-v5-c-form__label-text">Comment</span></label>
</div>
<div class="pf-v5-c-form__group-control">
<span class="pf-v5-c-form-control pf-m-success">
<input
value="This is a valid comment"
type="text"
id="form-help-text-comment"
name="form-help-text-comment"
aria-describedby="form-help-text-comment-helper"
/>
<span class="pf-v5-c-form-control__utilities">
<span class="pf-v5-c-form-control__icon pf-m-status">
<i class="fas fa-check-circle" aria-hidden="true"></i>
</span>
</span>
</span>
<div class="pf-v5-c-form__helper-text" aria-live="polite">
<div class="pf-v5-c-helper-text">
<div
class="pf-v5-c-helper-text__item pf-m-success"
id="form-help-text-comment-helper"
>
<span
class="pf-v5-c-helper-text__item-text"
>This is helper text for success input.</span>
</div>
</div>
</div>
</div>
</div>
<div class="pf-v5-c-form__group">
<div class="pf-v5-c-form__group-label"><label class="pf-v5-c-form__label" for="form-help-text-info">
<span class="pf-v5-c-form__label-text">Information</span></label>
</div>
<div class="pf-v5-c-form__group-control">
<span class="pf-v5-c-form-control pf-m-error pf-m-resize-both">
<textarea
id="form-help-text-info"
name="form-help-text-info"
aria-invalid="true"
aria-describedby="form-help-text-info-helper"
></textarea>
<span class="pf-v5-c-form-control__utilities">
<span class="pf-v5-c-form-control__icon pf-m-status">
<i class="fas fa-exclamation-circle" aria-hidden="true"></i>
</span>
</span>
</span>
<div class="pf-v5-c-form__helper-text" aria-live="polite">
<div class="pf-v5-c-helper-text">
<div
class="pf-v5-c-helper-text__item pf-m-error"
id="form-help-text-info-helper"
>
<span class="pf-v5-c-helper-text__item-icon">
<i class="fas fa-fw fa-exclamation-circle" aria-hidden="true"></i>
</span>
<span
class="pf-v5-c-helper-text__item-text"
>This is helper text with an icon.</span>
</div>
</div>
</div>
</div>
</div>
</form>
```
### Label with additional info
```html
<form class="pf-v5-c-form" novalidate>
<div class="pf-v5-c-form__group">
<div class="pf-v5-c-form__group-label pf-m-info">
<div class="pf-v5-c-form__group-label-main"><label class="pf-v5-c-form__label" for="form-additional-info-name">
<span class="pf-v5-c-form__label-text">Name</span> <span class="pf-v5-c-form__label-required" aria-hidden="true">*</span></label> <span
class="pf-v5-c-form__group-label-help"
aria-label="More information for name field"
aria-describedby="form-additional-infoform-additional-info-name"
role="button"
type="button"
tabindex="0"
><i class="pf-v5-pficon pf-v5-pficon-help" aria-hidden="true"></i></span>
</div>
<div
class="pf-v5-c-form__group-label-info"
>More information about the name field</div>
</div>
<div class="pf-v5-c-form__group-control">
<span class="pf-v5-c-form-control pf-m-required">
<input
required
type="text"
id="form-additional-info-name"
name="form-additional-info-name"
/>
</span>
</div>
</div>
</form>
```
### Label with additional info (horizontal form)
```html
<form class="pf-v5-c-form pf-m-horizontal" novalidate>
<div class="pf-v5-c-form__group">
<div class="pf-v5-c-form__group-label pf-m-info">
<div class="pf-v5-c-form__group-label-main"><label
class="pf-v5-c-form__label"
for="form-additional-info-horizontal-name"
>
<span class="pf-v5-c-form__label-text">Name</span> <span class="pf-v5-c-form__label-required" aria-hidden="true">*</span></label> <span
class="pf-v5-c-form__group-label-help"
aria-label="More information for name field"
aria-describedby="form-additional-info-horizontalform-additional-info-horizontal-name"
role="button"
type="button"
tabindex="0"
><i class="pf-v5-pficon pf-v5-pficon-help" aria-hidden="true"></i></span>
</div>
<div
class="pf-v5-c-form__group-label-info"
>More information about the name field</div>
</div>
<div class="pf-v5-c-form__group-control">
<span class="pf-v5-c-form-control pf-m-required">
<input
required
type="text"
id="form-additional-info-horizontal-name"
name="form-additional-info-horizontal-name"
/>
</span>
</div>
</div>
</form>
```
### Action group
```html
<form class="pf-v5-c-form" novalidate>
<div class="pf-v5-c-form__group pf-m-action">
<div class="pf-v5-c-form__actions">
<button class="pf-v5-c-button pf-m-primary" type="submit">Submit form</button>
<button class="pf-v5-c-button pf-m-link" type="reset">Reset form</button>
</div>
</div>
</form>
```
### Field group (non-expandable)
```html
<form class="pf-v5-c-form" novalidate>
<div
class="pf-v5-c-form__field-group"
role="group"
aria-labelledby="form-field-group-field-group-title"
>
<div class="pf-v5-c-form__field-group-header">
<div class="pf-v5-c-form__field-group-header-main">
<div class="pf-v5-c-form__field-group-header-title">
<div
class="pf-v5-c-form__field-group-header-title-text"
id="form-field-group-field-group-title"
>Field group Title</div>
</div>
<div
class="pf-v5-c-form__field-group-header-description"
>Field group description text</div>
</div>
<div class="pf-v5-c-form__field-group-header-actions">
<button class="pf-v5-c-button pf-m-secondary" type="button">Action</button>
</div>
</div>
<div class="pf-v5-c-form__field-group-body" hidden>
<div class="pf-v5-c-form__group">
<div class="pf-v5-c-form__group-label"><label
class="pf-v5-c-form__label"
for="form-field-group-field-group-label1"
>
<span class="pf-v5-c-form__label-text">Label 1</span> <span class="pf-v5-c-form__label-required" aria-hidden="true">*</span></label> <span
class="pf-v5-c-form__group-label-help"
aria-label="More information for label 1 field"
aria-describedby="form-field-group-field-group-label1"
role="button"
type="button"
tabindex="0"
><i class="pf-v5-pficon pf-v5-pficon-help" aria-hidden="true"></i></span>
</div>
<div class="pf-v5-c-form__group-control">
<span class="pf-v5-c-form-control pf-m-required">
<input
required
type="text"
id="form-field-group-field-group-label1"
name="form-field-group-field-group-label1"
/>
</span>
</div>
</div>
<div class="pf-v5-c-form__group">
<div class="pf-v5-c-form__group-label"><label
class="pf-v5-c-form__label"
for="form-field-group-field-group-label2"
>
<span class="pf-v5-c-form__label-text">Label 2</span> <span class="pf-v5-c-form__label-required" aria-hidden="true">*</span></label> <span
class="pf-v5-c-form__group-label-help"
aria-label="More information for label 2 field"
aria-describedby="form-field-group-field-group-label2"
role="button"
type="button"
tabindex="0"
><i class="pf-v5-pficon pf-v5-pficon-help" aria-hidden="true"></i></span>
</div>
<div class="pf-v5-c-form__group-control">
<span class="pf-v5-c-form-control pf-m-required">
<input
required
type="text"
id="form-field-group-field-group-label2"
name="form-field-group-field-group-label2"
/>
</span>
</div>
</div>
</div>
</div>
</form>
```
### Expandable and nested field groups
```html
<form class="pf-v5-c-form" novalidate>
<div
class="pf-v5-c-form__field-group"
role="group"
aria-labelledby="form-expandable-field-groups-field-group-1-title"
>
<div class="pf-v5-c-form__field-group-toggle">
<div class="pf-v5-c-form__field-group-toggle-button">
<button
class="pf-v5-c-button pf-m-plain"
type="button"
aria-expanded="false"
aria-label="Details"
id="form-expandable-field-groups-field-group-1-toggle"
aria-labelledby="form-expandable-field-groups-field-group-1-title form-expandable-field-groups-field-group-1-toggle"
>
<span class="pf-v5-c-form__field-group-toggle-icon">
<i class="fas fa-angle-right" aria-hidden="true"></i>
</span>
</button>
</div>
</div>
<div class="pf-v5-c-form__field-group-header">
<div class="pf-v5-c-form__field-group-header-main">
<div class="pf-v5-c-form__field-group-header-title">
<div
class="pf-v5-c-form__field-group-header-title-text"
id="form-expandable-field-groups-field-group-1-title"
>Field group 1</div>
</div>
<div
class="pf-v5-c-form__field-group-header-description"
>Field group 1 description text</div>
</div>
<div class="pf-v5-c-form__field-group-header-actions">
<button class="pf-v5-c-button pf-m-secondary" type="button">Action</button>
</div>
</div>
</div>
<div
class="pf-v5-c-form__field-group pf-m-expanded"
role="group"
aria-labelledby="form-expandable-field-groups-field-group-2-title"
>
<div class="pf-v5-c-form__field-group-toggle">
<div class="pf-v5-c-form__field-group-toggle-button">
<button
class="pf-v5-c-button pf-m-plain"
type="button"
aria-expanded="true"
aria-label="Details"
id="form-expandable-field-groups-field-group-2-toggle"
aria-labelledby="form-expandable-field-groups-field-group-2-title form-expandable-field-groups-field-group-2-toggle"
>
<span class="pf-v5-c-form__field-group-toggle-icon">
<i class="fas fa-angle-right" aria-hidden="true"></i>
</span>
</button>
</div>
</div>
<div class="pf-v5-c-form__field-group-header">
<div class="pf-v5-c-form__field-group-header-main">
<div class="pf-v5-c-form__field-group-header-title">
<div
class="pf-v5-c-form__field-group-header-title-text"
id="form-expandable-field-groups-field-group-2-title"
>Field group 2</div>
</div>
<div
class="pf-v5-c-form__field-group-header-description"
>Field group 2 description text</div>
</div>
</div>
<div class="pf-v5-c-form__field-group-body">
<div class="pf-v5-c-form__group">
<div class="pf-v5-c-form__group-label"><label
class="pf-v5-c-form__label"
for="form-expandable-field-groupsform-expandable-field-groups-field-group-2-label1"
>
<span class="pf-v5-c-form__label-text">Label 1</span> <span class="pf-v5-c-form__label-required" aria-hidden="true">*</span></label> <span
class="pf-v5-c-form__group-label-help"
aria-label="More information for label 1 field"
aria-describedby="form-expandable-field-groupsform-expandable-field-groups-field-group-2-label1"
role="button"
type="button"
tabindex="0"
><i class="pf-v5-pficon pf-v5-pficon-help" aria-hidden="true"></i></span>
</div>
<div class="pf-v5-c-form__group-control">
<span class="pf-v5-c-form-control pf-m-required">
<input
required
type="text"
id="form-expandable-field-groupsform-expandable-field-groups-field-group-2-label1"
name="form-expandable-field-groupsform-expandable-field-groups-field-group-2-label1"
/>
</span>
</div>
</div>
<div class="pf-v5-c-form__group">
<div class="pf-v5-c-form__group-label"><label
class="pf-v5-c-form__label"
for="form-expandable-field-groupsform-expandable-field-groups-field-group-2-label2"
>
<span class="pf-v5-c-form__label-text">Label 2</span> <span class="pf-v5-c-form__label-required" aria-hidden="true">*</span></label> <span
class="pf-v5-c-form__group-label-help"
aria-label="More information for label 2 field"
aria-describedby="form-expandable-field-groupsform-expandable-field-groups-field-group-2-label2"
role="button"
type="button"
tabindex="0"
><i class="pf-v5-pficon pf-v5-pficon-help" aria-hidden="true"></i></span>
</div>
<div class="pf-v5-c-form__group-control">
<span class="pf-v5-c-form-control pf-m-required">
<input
required
type="text"
id="form-expandable-field-groupsform-expandable-field-groups-field-group-2-label2"
name="form-expandable-field-groupsform-expandable-field-groups-field-group-2-label2"
/>
</span>
</div>
</div>
<div
class="pf-v5-c-form__field-group pf-m-expanded"
role="group"
aria-labelledby="form-expandable-field-groups-field-group-3-title"
>
<div class="pf-v5-c-form__field-group-header">
<div class="pf-v5-c-form__field-group-header-main">
<div class="pf-v5-c-form__field-group-header-title">
<div
class="pf-v5-c-form__field-group-header-title-text"
id="form-expandable-field-groups-field-group-3-title"
>Nested field group 3</div>
</div>
</div>
</div>
<div class="pf-v5-c-form__field-group-body">
<div class="pf-v5-c-form__group">
<div class="pf-v5-c-form__group-label"><label
class="pf-v5-c-form__label"
for="form-expandable-field-groupsform-expandable-field-groups-field-group-3-label1"
>
<span class="pf-v5-c-form__label-text">Label 1</span> <span
class="pf-v5-c-form__label-required"
aria-hidden="true"
>*</span></label> <span
class="pf-v5-c-form__group-label-help"
aria-label="More information for label 1 field"
aria-describedby="form-expandable-field-groupsform-expandable-field-groups-field-group-3-label1"
role="button"
type="button"
tabindex="0"
><i class="pf-v5-pficon pf-v5-pficon-help" aria-hidden="true"></i></span>
</div>
<div class="pf-v5-c-form__group-control">
<span class="pf-v5-c-form-control pf-m-required">
<input
required
type="text"
id="form-expandable-field-groupsform-expandable-field-groups-field-group-3-label1"
name="form-expandable-field-groupsform-expandable-field-groups-field-group-3-label1"
/>
</span>
</div>
</div>
<div class="pf-v5-c-form__group">
<div class="pf-v5-c-form__group-label"><label
class="pf-v5-c-form__label"
for="form-expandable-field-groupsform-expandable-field-groups-field-group-3-label2"
>
<span class="pf-v5-c-form__label-text">Label 2</span> <span
class="pf-v5-c-form__label-required"
aria-hidden="true"
>*</span></label> <span
class="pf-v5-c-form__group-label-help"
aria-label="More information for label 2 field"
aria-describedby="form-expandable-field-groupsform-expandable-field-groups-field-group-3-label2"
role="button"
type="button"
tabindex="0"
><i class="pf-v5-pficon pf-v5-pficon-help" aria-hidden="true"></i></span>
</div>
<div class="pf-v5-c-form__group-control">
<span class="pf-v5-c-form-control pf-m-required">
<input
required
type="text"
id="form-expandable-field-groupsform-expandable-field-groups-field-group-3-label2"
name="form-expandable-field-groupsform-expandable-field-groups-field-group-3-label2"
/>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
</form>
```
## Documentation
To avoid the form label's required indicator or help tooltip icon from wrapping separately from the form label text, all whitespace characters between the last word of the label text, the required indicator (`.pf-v5-c-form__label-required`), and help tooltip icon (`.pf-v5-c-form__label-help`) must be removed, and ` ` characters added in between to maintain spacing. Also the help tooltip icon's `.pf-v5-c-form__label-required` element must be a `<span>` instead of a `<button>` due to layout limitations of the `<button>` element imposed by user agent styles.
### Accessibility
| Attribute | Applied to | Outcome |
| -- | -- | -- |
| `for` | `<label>` | Each `<label>` must have a `for` attribute that matches its form field id. **Required** |
| `id` | `<input type="radio/checkbox/text">`, `<select>`, `<textarea>` | Each `<form>` field must have an `id` attribute that matches its label's `for` value. **Required** |
| `required` | `<input>`, `<select>`, `<textarea>` | Required fields must include these attributes. |
| `aria-describedby="{helper_text_id}"` | `<input>`, `<select>`, `<textarea>` | Form fields with related `.pf-v5-c-helper-text` require this attribute. Usage `<input aria-describedby="{helper_text_id}">`. |
| `aria-invalid="true" aria-describedby="{helper_text_id}"` | `<input>`, `<select>`, `<textarea>` | When form validation fails `aria-describedby` is used to communicate the error to the user. These attributes need to be handled with Javascript so that `aria-describedby` only references help text that explains the error, and so that `aria-invalid="true"` is only present when validation fails. For proper styling of errors `aria-invalid="true"` is required. |
| `aria-hidden="true"` | `.pf-v5-c-form__label-required` | Hides the required indicator from assistive technologies. |
| `role="group"` | `.pf-v5-c-form__group`, `.pf-v5-c-form__section`, `.pf-v5-c-form__field-group` | Provides group role for form groups, form sections, and form field groups. **Required for checkbox groups, form groups, form sections, and form field groups.** |
| `role="radiogroup"` | `.pf-v5-c-form__group` | Provides group role for radio input groups. **Required for radio input groups** |
| `role="button"` | `.pf-v5-c-form__group-label-help` | Provides button role for group label help spans. **Required for group label help.** |
| `id` | `.pf-v5-c-form__group-label` | Generates an `id` for use in the `aria-labelledby` attribute in a checkbox or radio form group. |
| `id` | `.pf-v5-c-form__field-group-title-text` | Generates an `id` for use in the `aria-labelledby` attribute in an expandable field group's toggle button. |
| `id` | `.pf-v5-c-form__field-group-toggle-button > button` | Generates an `id` for use in the `aria-labelledby` attribute in an expandable field group's toggle button. |
| `aria-labelledby="{label id}"` | `.pf-v5-c-form__group`, `.pf-v5-c-form__section`, `.pf-v5-c-form__field-group` | Provides an accessible label for form groups, form sections, and form field groups. **Required for form groups, form sections, and form field groups that contain labels.** |
| `aria-label` | `.pf-v5-c-form__field-group-toggle-button > button` | Provides an accessible label for the field group toggle button. |
| `aria-labelledby="{title id} {toggle button id}"` | `.pf-v5-c-form__field-group-toggle-button > button` | Provides an accessible label for the field group toggle button. |
| `aria-expanded="true/false"` | `.pf-v5-c-form__field-group-toggle-button > button` | Indicates whether the field group body is visible or hidden. |
| `id="{form_label_id}"` | `.pf-v5-c-form__label` | Generates an `id` for use in the `aria-describedby` attribute in a `.pf-v5-c-form__group-label-help`. |
| `aria-label="{descriptive text}" aria-describedby="{form_label_id}"` | `.pf-v5-c-form__group-label-help` | Provides an accessible label on a button that provides additional information for a form element. |
### Usage
| Class | Applied to | Outcome |
| -- | -- | -- |
| `.pf-v5-c-form` | `<form>` | Initiates a standard form. **Required** |
| `.pf-v5-c-form__section` | `<div>, <section>` | Initiates a form section. |
| `.pf-v5-c-form__section-title` | `<h1>`,`<h2>`,`<h3>`,`<h4>`,`<h5>`,`<h6>`, `<div>` | Initiates a form section title. |
| `.pf-v5-c-form__group` | `<div>` | Initiates a form group. |
| `.pf-v5-c-form__group-label` | `<div>` | Initiates a form group label. |
| `.pf-v5-c-form__label` | `<label>`, `<span>` | Initiates a form label. **Required** |
| `.pf-v5-c-form__label-text` | `<span>` | Initiates a form label text. **Required** |
| `.pf-v5-c-form__label-required` | `<span>` | Initiates a form label required indicator. |
| `.pf-v5-c-form__group-label-main` | `<div>` | Initiates a form group label main container. |
| `.pf-v5-c-form__group-label-info` | `<div>` | Initiates a form group info label. |
| `.pf-v5-c-form__group-label-help` | `<button>`, `<span>` | Initiates a field level help span/button. |
| `.pf-v5-c-form__group-control` | `<div>` | Initiates a form group control section. |
| `.pf-v5-c-form__actions` | `<div>` | Iniates a row of actions. |
| `.pf-v5-c-form__helper-text` | `<p>`, `<div>` | Initiates a form helper text block. |
| `.pf-v5-c-form__alert` | `<div>` | Initiates the form alert container for inline alerts. |
| `.pf-v5-c-form__field-group` | `<div>` | Initiates a form field group. |
| `.pf-v5-c-form__field-group-toggle` | `<div>` | Initiates the form field group toggle. |
| `.pf-v5-c-form__field-group-toggle-button` | `<div>` | Initiates the form field group toggle button. |
| `.pf-v5-c-form__field-group-toggle-icon` | `<span>` | Initiates the form field group toggle icon. |
| `.pf-v5-c-form__field-group-header` | `<div>` | Initiates the form field group header. |
| `.pf-v5-c-form__field-group-header-main` | `<div>` | Initiates the form field group main section. |
| `.pf-v5-c-form__field-group-header-title` | `<div>` | Initiates the form field group title. |
| `.pf-v5-c-form__field-group-header-title-text` | `<div>` | Initiates the form field group title text. |
| `.pf-v5-c-form__field-group-header-description` | `<div>` | Initiates the form field group description. |
| `.pf-v5-c-form__field-group-header-actions` | `<div>` | Initiates the form field group actions container. |
| `.pf-v5-c-form__field-group-body` | `<div>` | Initiates the form field group body. |
| `.pf-m-horizontal{-on-[xs, sm, md, lg, xl, 2xl]}` | `.pf-v5-c-form` | Modifies the form for a horizontal layout at an optional breakpoint. The default breakpoint is `-md`. |
| `.pf-m-limit-width` | `.pf-v5-c-form` | Limits the overall max-width of the form. Configurable by defining `--pf-v5-c-form--m-limit-width--MaxWidth`. |
| `.pf-m-info` | `.pf-v5-c-form__group-label` | Modifies the form group label to contain form group label info. |
| `.pf-m-action` | `.pf-v5-c-form__group` | Modifies form group margin-top. |
| `.pf-m-disabled` | `.pf-v5-c-form__label` | Modifies form label to show disabled state. |
| `.pf-m-no-padding-top` | `.pf-v5-c-form__group-label` | Removes top padding from the label element for labels adjacent to an element that isn't a form control. |
| `.pf-m-inline` | `.pf-v5-c-form__group-control` | Modifies form group children to be inline (this is primarily for radio buttons and checkboxes). |
| `.pf-m-stack` | `.pf-v5-c-form__group-control` | Modifies form group children to be stacked with space between children. |
| `.pf-m-expanded` | `.pf-v5-c-form__field-group` | Modifies an expandable field group for the expanded state. |
| `--pf-v5-c-form--m-limit-width--MaxWidth` | `.pf-v5-c-form.pf-m-limit-width` | Sets a custom `max-width` for a width limited form. |