Skip to content

Commit

Permalink
format alignment again
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhangChengLin committed Jul 28, 2023
1 parent 241c044 commit ca85fc4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions site/content/docs/5.3/forms/input-group.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,27 +144,27 @@ Min & Max & Steps and different Value. The following example minimum value is 0.
<div class="input-group mb-3 flex-nowrap">
<label for="customRange3" class="input-group-text">Min &amp; Max</label>
<span class="input-group-text w-100">
<input type="range" class="form-range" min="0" max="5" id="customRange3">
<input type="range" class="form-range" min="0" max="5" id="customRange3">
</span>
</div>

<div class="input-group mb-3 flex-nowrap">
<label for="customRange4" class="input-group-text">Steps</label>
<span class="input-group-text w-100">
<input type="range" class="form-range" min="0" max="5" step="0.5" id="customRange4">
<input type="range" class="form-range" min="0" max="5" step="0.5" id="customRange4">
</span>
</div>

<div class="input-group mb-3 flex-nowrap">
<label for="customRange5" class="input-group-text">Value = 1.5</label>
<span class="input-group-text w-100">
<input type="range" class="form-range" min="0" max="5" step="0.5" value="1.5" id="customRange5">
<input type="range" class="form-range" min="0" max="5" step="0.5" value="1.5" id="customRange5">
</span>
</div>
<div class="input-group mb-3 flex-nowrap">
<label for="customRange6" class="input-group-text">Value = 4.5</label>
<span class="input-group-text w-100">
<input type="range" class="form-range" min="0" max="5" step="0.5" value="4" id="customRange6">
<input type="range" class="form-range" min="0" max="5" step="0.5" value="4" id="customRange6">
</span>
</div>
{{< /example >}}
Expand Down

0 comments on commit ca85fc4

Please sign in to comment.