我正在使用& lt輸入類型= & quot復選框class = & quot窗體-復選框窗體-控件-單選& quot& gt在自舉3中。 我正在嘗試升級到bootstrap 4,但是找不到這些類。
在bootstrap 4中,這些類被刪除了嗎?或者我們有沒有與之等效的類?
bootstrap v3不再由bootstrap團隊維護,因此您可以使用它。 class = & quot窗體-復選框窗體-控件-單選& quot在bootstrap v4中,那些類被bootstrap團隊移除,所以那些類不再工作,所以你不能使用它們。對于您的解決方案,您可以使用這些類..
<div class="input-group-text">
<input type="checkbox" aria-label="Checkbox for following text input">
</div>
</div>```
to checked box. for more details you can follow bootstrap v4 official document.
https://getbootstrap.com/docs/4.0/components/input-group/#multiple-inputs
是的,這些類將從引導中刪除
對于bootstrap 4,您可以使用以下類
<div class="form-check">
<input type="checkbox" class="form-check-input" id="exampleCheck1">
<label class="form-check-label" for="exampleCheck1">Check me out</label>
</div>
要了解更多信息,您可以參考自舉a的鏈接 https://getbootstrap.com/docs/4.0/components/forms/