Table of Contents

What are Form Control elements in HTML?

About

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

They are used:

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;
}