Make Definition Clearer (#35178)

* Make Definition Clearer

* readability update

Co-Authored-By: lawrencejon <lawrencejon97@gmail.com>
This commit is contained in:
Jonathan Lawrence
2019-02-17 05:13:02 -05:00
committed by Manish Giri
parent 16eb18954e
commit 8c0d082b05

View File

@@ -4,7 +4,7 @@ title: Required
## Required
The HTML `required` attribute is used in an input element to make the input field in a form required to submit the form. This means that the user must fill in the field. <br />
The HTML `required` attribute specifies that filling out an input field is mandatory before a form can be submitted. <br />
If the user does not fill in the input field, the form will not submit and it will give a message asking the user to fill out the field. <br /> <br />
The `required` attribute is applicable to `<input>`, `<select>`, and `<textarea>`.