2019-03-05 01:28:17 +03:00
---
title: Forms
path: components/forms
status: Stable
2019-03-05 02:05:44 +03:00
source: 'https://github.com/primer/css/tree/master/src/forms'
2019-03-05 01:28:17 +03:00
bundle: forms
---
Style individual form controls and utilize common layouts.
Overview:
2019-07-30 02:56:17 +03:00
2019-03-05 01:28:17 +03:00
- We reset several elements' default styles for cross browser consistency and easier manipulation later. This includes `<fieldset>` s, WebKit validation bubbles, and most textual `<input>` s.
- Specific types of textual `<input>` s are styled automatically, but `.form-control` is available should you need it.
- Always declare a `type` on your `<button>` s.
- Form layouts rely on form groups.
#### Kitchen sink
All our inputs and buttons side-by-side for easy testing of sizing and alignment with one another.
2019-08-09 01:24:04 +03:00
```html live
2019-03-05 01:28:17 +03:00
< p >
< button class = "btn" type = "button" > Button< / button >
< button class = "btn select-menu-button" type = "button" aria-expanded = "false" aria-haspopup = "true" >
Select menu
< / button >
2019-07-30 02:56:17 +03:00
< input class = "form-control" type = "text" placeholder = "Standard input" aria-label = "Repository description" / >
< input class = "form-control input-monospace" type = "text" placeholder = "Monospace input" aria-label = "SHA" / >
2019-03-05 01:28:17 +03:00
< select class = "form-select" aria-label = "Important decision" >
< option > Select< / option >
< option value = "option 2" > Option 2< / option >
< / select >
< / p >
< p >
< button class = "btn btn-sm" type = "button" > Small button< / button >
< button class = "btn btn-sm select-menu-button" type = "button" aria-expanded = "false" aria-haspopup = "true" >
Select menu
< / button >
2019-07-30 02:56:17 +03:00
< input class = "form-control input-sm" type = "text" placeholder = "Small input" aria-label = "Repository description" / >
2019-03-05 01:28:17 +03:00
< select class = "form-select select-sm" aria-label = "Important decision" >
< option > Select< / option >
< option value = "option 1" > Option 1< / option >
< / select >
< / p >
```
#### Example form
2019-04-25 23:42:54 +03:00
Form controls in Primer CSS currently have no basic layout specified (this is by design). You'll need to use `<fieldset>` s, `<div>` s, or other elements and styles to rearrange them.
2019-03-05 01:28:17 +03:00
2019-07-30 02:56:17 +03:00
```html live
2019-03-05 01:28:17 +03:00
< form >
< label for = "name" > Name< / label >
2019-07-30 02:56:17 +03:00
< input class = "form-control" type = "text" id = "name" / >
2019-03-05 01:28:17 +03:00
< label for = "email" > Email address< / label >
2019-07-30 02:56:17 +03:00
< input class = "form-control" type = "email" id = "email" / >
2019-03-05 01:28:17 +03:00
2019-07-30 02:56:17 +03:00
< label > < input type = "checkbox" / > Remember me < / label >
2019-03-05 01:28:17 +03:00
2019-07-30 02:56:17 +03:00
< label > < input type = "radio" id = "herp" name = "herpderp" checked / > Herp < / label >
< label > < input type = "radio" id = "derp" name = "herpderp" / > Derp < / label >
2019-03-05 01:28:17 +03:00
< button class = "btn" type = "submit" > Submit< / button >
< / form >
```
#### Form contrast
Textual form controls have a white background by default. You can change this to a light gray with `.input-contrast` .
2019-07-30 02:56:17 +03:00
```html live
2019-03-05 01:28:17 +03:00
< form >
2019-07-30 02:56:17 +03:00
< input class = "form-control" type = "text" placeholder = "Default input" aria-label = "Default input" / >
< input
class="form-control input-contrast"
type="text"
placeholder="Input with contrast"
aria-label="Input with contrast"
/>
2019-03-05 01:28:17 +03:00
< / form >
```
#### Sizing
Make inputs smaller, larger, or full-width with an additional class.
##### Small
2019-07-30 02:56:17 +03:00
```html live
2019-03-05 01:28:17 +03:00
< form >
2019-07-30 02:56:17 +03:00
< input class = "form-control input-sm" type = "text" placeholder = "Small input" aria-label = "Small input" / >
2019-03-05 01:28:17 +03:00
< / form >
```
##### Large
2019-07-30 02:56:17 +03:00
```html live
2019-03-05 01:28:17 +03:00
< form >
2019-07-30 02:56:17 +03:00
< input class = "form-control input-lg" type = "text" placeholder = "Large input" aria-label = "Large input" / >
2019-03-05 01:28:17 +03:00
< / form >
```
##### Block
2019-07-30 02:56:17 +03:00
```html live
2019-03-05 01:28:17 +03:00
< form >
2019-07-30 02:56:17 +03:00
< input class = "form-control input-block" type = "text" placeholder = "Full-width input" aria-label = "Full-width input" / >
2019-03-05 01:28:17 +03:00
< / form >
```
2019-07-30 20:53:48 +03:00
##### Dark
2019-08-21 09:19:43 +03:00
```html live
< div class = "bg-gray-dark p-3 mt-n3 ml-n3 mr-n3" >
< input class = "form-control input-dark" type = "text" placeholder = "Dark input" aria-label = "Dark input" >
2019-07-30 20:53:48 +03:00
< input class = "form-control input-dark input-sm" type = "text" placeholder = "Dark input small" aria-label = "Dark input" >
< / div >
2019-08-21 09:19:43 +03:00
```
2019-07-30 20:53:48 +03:00
2019-03-05 01:28:17 +03:00
##### Hide webkit's contact info autofill icon
2019-07-30 02:56:17 +03:00
2019-03-05 01:28:17 +03:00
Webkit sometimes gets confused and tries to add an icon/dropdown to autofill contact information on fields that may not be appropriate (such as input for number of users). Use this class to override the display of this icon.
2019-07-30 02:56:17 +03:00
```html live
2019-03-05 01:28:17 +03:00
< form >
2019-07-30 02:56:17 +03:00
< input
class="form-control input-hide-webkit-autofill"
placeholder="Hide Webkit's contact autofill on this input"
type="text"
aria-label="Hide Webkit's contact autofill on this input"
/>
2019-03-05 01:28:17 +03:00
< / form >
```
#### Selects
2019-04-25 23:42:54 +03:00
Primer CSS adds light `height` and `vertical-align` styles to `<select>` s for all browsers to render them consistently with textual inputs.
2019-03-05 01:28:17 +03:00
2019-07-30 02:56:17 +03:00
```html live
2019-03-05 01:28:17 +03:00
< form >
< select class = "form-select" aria-label = "Preference" >
< option > Choose an option< / option >
< option > Git< / option >
< option > Subversion< / option >
< option > Social Coding< / option >
< option > Beets< / option >
< option > Bears< / option >
< option > Battlestar Galactica< / option >
< / select >
< / form >
```
##### Small
Use the `.select-sm` class to resize both default and custom `<select>` s to match the size of [our small buttons ](./buttons#default-buttons ).
2019-07-30 02:56:17 +03:00
```html live
2019-03-05 01:28:17 +03:00
< select class = "form-select select-sm" aria-label = "Preference" >
< option > Choose an option< / option >
< option > Git< / option >
< option > Subversion< / option >
< option > Social Coding< / option >
< option > Beets< / option >
< option > Bears< / option >
< option > Battlestar Galactica< / option >
< / select >
< select class = "form-select select-sm" aria-label = "Preference" >
< option > Choose an option< / option >
< option > Git< / option >
< option > Subversion< / option >
< option > Social Coding< / option >
< option > Beets< / option >
< option > Bears< / option >
< option > Battlestar Galactica< / option >
< / select >
```
#### Form groups
2019-07-30 02:56:17 +03:00
```html live
2019-03-05 01:28:17 +03:00
< form >
2020-02-19 16:45:55 +03:00
< div class = "form-group" >
< div class = "form-group-header" >
< label for = "example-text" > Example Text< / label >
< / div >
< div class = "form-group-body" >
< input class = "form-control" type = "text" value = "Example Value" id = "example-text" / >
< / div >
< / div >
< div class = "form-group" >
< div class = "form-group-header" >
< label for = "example-select" > Example Select< / label >
< / div >
< div class = "form-group-body" >
2019-03-05 01:28:17 +03:00
< select class = "form-select" id = "example-select" >
< option > Choose an option< / option >
< option > Git< / option >
< option > Subversion< / option >
< option > Social Coding< / option >
< option > Beets< / option >
< option > Bears< / option >
< option > Battlestar Galactica< / option >
< / select >
2020-02-19 16:45:55 +03:00
< / div >
< / div >
< div class = "form-group" >
< div class = "form-group-header" >
< label for = "example-textarea" > Example Textarea< / label >
< / div >
< div class = "form-group-body" >
2019-03-05 01:28:17 +03:00
< textarea class = "form-control" id = "example-textarea" > < / textarea >
2020-02-19 16:45:55 +03:00
< / div >
< / div >
2019-03-05 01:28:17 +03:00
< / form >
```
#### Form group validation
2020-03-11 04:20:25 +03:00
Convey success, errors and warnings for form groups. For github.com consider using the [`<auto-check>` ](https://github.github.io/web-systems-documentation/demo/custom_elements/auto_check/ ) element to perform server-side validation on an input.
2020-03-10 11:10:08 +03:00
2020-03-11 04:08:05 +03:00
If the input is **valid** , add the `.successed` class to the `<div class="form-group">` element. Next add/update a success message to the `<div>` under the input, as well as the `.success` class.
2019-03-05 01:28:17 +03:00
2019-07-30 02:56:17 +03:00
```html live
2020-03-11 03:19:50 +03:00
< form class = "pb-6" >
2020-03-11 04:08:05 +03:00
< div class = "form-group successed" >
2020-03-10 11:10:08 +03:00
< div class = "form-group-header" >
2020-03-11 03:26:40 +03:00
< label for = "username-input" > Username< / label >
2020-03-10 11:10:08 +03:00
< / div >
< div class = "form-group-body" >
< input
class="form-control"
type="text"
value="monalisa"
2020-03-11 03:26:40 +03:00
id="username-input"
aria-describedby="username-input-validation"
2020-03-10 11:10:08 +03:00
/>
< / div >
2020-03-11 03:26:40 +03:00
< div class = "success" id = "username-input-validation" > monalisa is available< / div >
2020-03-10 11:10:08 +03:00
< / div >
< / form >
```
If the input is **not valid** , add the `.errored` class to the `<div class="form-group">` element. Next add/update an error message to the `<div>` under the input, as well as the `.error` class.
```html live
< form class = "pb-6" >
2020-02-19 16:45:55 +03:00
< div class = "form-group errored" >
< div class = "form-group-header" >
2020-03-11 03:26:40 +03:00
< label for = "username-input" > Username< / label >
2020-02-19 16:45:55 +03:00
< / div >
< div class = "form-group-body" >
2019-07-30 02:56:17 +03:00
< input
class="form-control"
type="text"
2020-03-10 11:10:08 +03:00
value="monalisa"
2020-03-11 03:26:40 +03:00
id="username-input"
aria-describedby="username-input-validation"
2019-07-30 02:56:17 +03:00
/>
2020-02-19 16:45:55 +03:00
< / div >
2020-03-11 03:26:40 +03:00
< div class = "error" id = "username-input-validation" > monalisa is not available. monalisa-beep, monalisa-cyber, or monalisa87 are available.< / div >
2020-02-19 16:45:55 +03:00
< / div >
2020-03-10 11:10:08 +03:00
< / form >
```
If the input should show a **warning** , add the `.warn` class to the `<div class="form-group">` element. Next add/update a warning message to the `<div>` under the input, as well as the `.warning` class.
```html live
< form class = "pb-6" >
2020-02-19 16:45:55 +03:00
< div class = "form-group warn" >
< div class = "form-group-header" >
2020-03-11 03:26:40 +03:00
< label for = "username-input" > Username< / label >
2020-02-19 16:45:55 +03:00
< / div >
< div class = "form-group-body" >
2019-07-30 02:56:17 +03:00
< input
class="form-control"
type="text"
2020-03-10 11:10:08 +03:00
value="monalisa-monalisa-monalisa-monalisa-"
2020-03-11 03:26:40 +03:00
id="username-input"
aria-describedby="username-input-validation"
2019-07-30 02:56:17 +03:00
/>
2020-02-19 16:45:55 +03:00
< / div >
2020-03-11 03:26:40 +03:00
< div class = "warning" id = "username-input-validation" > 36 of maximum 39 characters entered.< / div >
2020-02-19 16:45:55 +03:00
< / div >
2019-03-05 01:28:17 +03:00
< / form >
```
#### Checkboxes and radios
Utilities to spice up the alignment and styling of checkbox and radio controls.
2019-07-30 02:56:17 +03:00
```html live
2019-03-05 01:28:17 +03:00
< form >
< div class = "form-checkbox" >
< label >
2019-07-30 02:56:17 +03:00
< input type = "checkbox" checked = "checked" aria-describedby = "help-text-for-checkbox" / >
2019-03-05 01:28:17 +03:00
Available for hire
< / label >
< p class = "note" id = "help-text-for-checkbox" >
This will do insanely < strong > awesome< / strong > and < strong > amazing< / strong > things!
< / p >
< / div >
< / form >
```
You may also add emphasis to the label:
2019-07-30 02:56:17 +03:00
```html live
2019-03-05 01:28:17 +03:00
< form >
< div class = "form-checkbox" >
< label >
2019-07-30 02:56:17 +03:00
< input type = "checkbox" checked = "checked" / >
2019-03-05 01:28:17 +03:00
< em class = "highlight" > Available for hire< / em >
< / label >
< / div >
< / form >
```
##### Show / hide content based on a checkbox or radio button state
Content that is hidden by default should only be done so if it is non-essential for the context of the surrounding content. Be sure to use the `aria-live="polite"` attribute on the parent label for added content to be announced when displayed.
2019-07-30 02:56:17 +03:00
```html live
2019-03-18 14:29:11 +03:00
< form >
2019-03-05 01:28:17 +03:00
< div class = "form-checkbox" >
< label >
2019-07-30 02:56:17 +03:00
< input type = "radio" name = "hireme" / >
2019-03-05 01:28:17 +03:00
Not available for hire
< / label >
< / div >
< div class = "form-checkbox" >
< label aria-live = "polite" >
2019-07-30 02:56:17 +03:00
< input type = "radio" class = "form-checkbox-details-trigger" name = "hireme" / >
2019-03-05 01:28:17 +03:00
Available for hire
< span class = "form-checkbox-details text-normal" >
< span class = "d-block mb-1" > Available hours per week< / span >
2019-07-30 02:56:17 +03:00
< input type = "text" name = "" class = "form-control input-contrast" size = "3" / >
2019-03-05 01:28:17 +03:00
< span class = "text-small text-gray pl-2" > hours per week< / span >
< / span >
< / label >
< / div >
< / form >
```
2019-11-08 09:43:42 +03:00
#### Radio group
2019-11-08 11:38:05 +03:00
Radio groups are tab like controls. Their blue border gives extra emphasis to what is selected.
2019-11-08 09:43:42 +03:00
```html live
< form >
< div class = "radio-group" >
< input class = "radio-input" id = "option-a" type = "radio" name = "options" >
< label class = "radio-label" for = "option-a" > Option A< / label >
< input class = "radio-input" id = "option-b" type = "radio" name = "options" >
< label class = "radio-label" for = "option-b" > Option B< / label >
< input class = "radio-input" id = "option-c" type = "radio" name = "options" >
< label class = "radio-label" for = "option-c" > Option C< / label >
< / div >
< / form >
```
2019-03-05 01:28:17 +03:00
#### Input group
Attached an input and button to one another.
2019-10-07 08:14:30 +03:00
```html live
2019-03-05 01:28:17 +03:00
< form >
< div class = "input-group" >
< input class = "form-control" type = "text" placeholder = "Username" aria-label = "Username" >
< span class = "input-group-button" >
< button class = "btn" type = "button" aria-label = "Copy to clipboard" >
2019-10-07 08:14:30 +03:00
<!-- <%= octicon "clippy" %> -->
< svg class = "octicon octicon-clippy" viewBox = "0 0 14 16" version = "1.1" width = "14" height = "16" aria-hidden = "true" > < path fill-rule = "evenodd" d = "M2 13h4v1H2v-1zm5-6H2v1h5V7zm2 3V8l-3 3 3 3v-2h5v-2H9zM4.5 9H2v1h2.5V9zM2 12h2.5v-1H2v1zm9 1h1v2c-.02.28-.11.52-.3.7-.19.18-.42.28-.7.3H1c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h3c0-1.11.89-2 2-2 1.11 0 2 .89 2 2h3c.55 0 1 .45 1 1v5h-1V6H1v9h10v-2zM2 5h8c0-.55-.45-1-1-1H8c-.55 0-1-.45-1-1s-.45-1-1-1-1 .45-1 1-.45 1-1 1H3c-.55 0-1 .45-1 1z" > < / path > < / svg >
2019-03-05 01:28:17 +03:00
< / button >
< / span >
< / div >
< / form >
```
#### Form actions
Align buttons to the right—via `float: right` on the buttons—in forms with `.form-actions` . The floats are automatically cleared for you.
2019-07-30 02:56:17 +03:00
```html live
2019-03-05 01:28:17 +03:00
< div class = "form-actions" >
< button type = "submit" class = "btn btn-primary" > Save changes< / button >
< button type = "button" class = "btn" > Cancel< / button >
< / div >
```