aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <[email protected]>2019-08-04 20:20:00 +0300
committerGitHub <[email protected]>2019-08-04 20:20:00 +0300
commit9c75a63bfc6e95e6a62dd8e24fd06528eff763b0 (patch)
treecf8da01ba5497a26ef1e4b27386ec15041115842
parentd2b79d97e71ed4e2a33671d561e1214d09a8a4db (diff)
downloadbootstrap-9c75a63bfc6e95e6a62dd8e24fd06528eff763b0.tar.xz
bootstrap-9c75a63bfc6e95e6a62dd8e24fd06528eff763b0.zip
Update form-control.md (#29203)
Fix Readonly plain text form alignment
-rw-r--r--site/content/docs/4.3/forms/form-control.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/site/content/docs/4.3/forms/form-control.md b/site/content/docs/4.3/forms/form-control.md
index 0189f02e8..c47940c11 100644
--- a/site/content/docs/4.3/forms/form-control.md
+++ b/site/content/docs/4.3/forms/form-control.md
@@ -62,14 +62,14 @@ If you want to have `<input readonly>` elements in your form styled as plain tex
{{< example >}}
<form class="form-inline">
- <div class="mb-3 mb-2">
+ <div class="mb-3">
<label for="staticEmail2" class="sr-only">Email</label>
<input type="text" readonly class="form-control-plaintext" id="staticEmail2" value="[email protected]">
</div>
- <div class="mb-3 mx-sm-3 mb-2">
+ <div class="mb-3 mx-sm-3">
<label for="inputPassword2" class="sr-only">Password</label>
<input type="password" class="form-control" id="inputPassword2" placeholder="Password">
</div>
- <button type="submit" class="btn btn-primary mb-2">Confirm identity</button>
+ <button type="submit" class="btn btn-primary mb-3">Confirm identity</button>
</form>
{{< /example >}}