大家好!今天是鐵人賽的第21天,很高興度過了21天的鐵人賽。
今天要說的是checks and radios中的行內,在單選框或多選框中不在只是垂直排列,而是排一行。
行內(checkbox) |
---|
<div class="form-check form-check-inline">
<input class="form-check-input" type="checkbox" value="option1">
<label class="form-check-label">1</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="checkbox" value="option2">
<label class="form-check-label">2</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="checkbox" value="option3" disabled>
<label class="form-check-label">3 (disabled)</label>
</div>
行內(radio) |
---|
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" value="option1">
<label class="form-check-label" for="inlineRadio1">1</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" value="option2">
<label class="form-check-label" for="inlineRadio2">2</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" value="option3" disabled>
<label class="form-check-label">3 (disabled)</label>
</div>
今天是第21天很高興能寫到這一天,各位大佬們有順利不斷賽嗎?
要連續寫這麼多天的文章屬實不容易啊!希望各位能順利完成文章。