Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan <vanillajonathan@users.noreply.github.com>2020-10-27 12:14:49 +0300
committerMark Otto <otto@github.com>2020-10-28 03:40:58 +0300
commit582f52e9e147c5386d07f241a74a185175cc461d (patch)
tree7aaacf385d049142f96d5fa3ce667c2cd85104b2 /site/content
parent1baa73591b036e5878a9dde9f68847ffa464b39e (diff)
Add example with input group between two inputs
Diffstat (limited to 'site/content')
-rw-r--r--site/content/docs/5.0/forms/input-group.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/site/content/docs/5.0/forms/input-group.md b/site/content/docs/5.0/forms/input-group.md
index 599fdbacde..83a7f44b9a 100644
--- a/site/content/docs/5.0/forms/input-group.md
+++ b/site/content/docs/5.0/forms/input-group.md
@@ -33,6 +33,12 @@ Place one add-on or button on either side of an input. You may also place one on
<span class="input-group-text">.00</span>
</div>
+<div class="input-group mb-3">
+ <input type="text" class="form-control" placeholder="Username">
+ <span class="input-group-text">@</span>
+ <input type="text" class="form-control" placeholder="Server">
+</div>
+
<div class="input-group">
<span class="input-group-text">With textarea</span>
<textarea class="form-control" aria-label="With textarea"></textarea>