From 937b90ef5b5b22a1dfcbfc271d9031b076c07700 Mon Sep 17 00:00:00 2001 From: Mark Otto <otto@github.com> Date: Wed, 2 Jun 2021 23:05:56 -0700 Subject: [PATCH] Update site/content/docs/5.0/forms/form-control.md --- site/content/docs/5.0/forms/form-control.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/content/docs/5.0/forms/form-control.md b/site/content/docs/5.0/forms/form-control.md index e76062d55c..9c1c495b16 100644 --- a/site/content/docs/5.0/forms/form-control.md +++ b/site/content/docs/5.0/forms/form-control.md @@ -40,7 +40,7 @@ Add the `disabled` boolean attribute on an input to give it a grayed out appeara ## Readonly -Add the `readonly` boolean attribute on an input to prevent modification of the input's value. Read-only inputs appear bolder (just like disabled inputs), but retain the standard cursor. +Add the `readonly` boolean attribute on an input to prevent modification of the input's value. {{< example >}} <input class="form-control" type="text" value="Readonly input here..." aria-label="readonly input example" readonly> -- GitLab