Table of Contents

About

control form elements are elements that are used specifically inside a form.

They are used:

  • to specify a key and a value.
  • to layout the form
  • to submit it
  • or reset it

List

Successful

From a form, only successful form controls are included when the form is submited, i.e. those:

Styling

If you want to style a control, you need first to disable the platform-native styling with the appearance property set to none.

Example with a checkbox

input[type="checkbox"] {
  appearance: none;
}