使用Icon Bootstrap 搜尋輸入
Bootstrap 在版本4 中不再支援Glyphicons,因此想要向搜尋輸入新增圖示的使用者必須找到替代方案方法。
Bootstrap 5 Beta(2021 年)更新)
<div class="input-group"> <input class="form-control border-end-0 border rounded-pill" type="text" value="search">
Bootstrap 4(原始解決方案)
使用🎜>使用🎜>
使用🎜>使用🎜>使用🎜><div class="input-group col-md-4"> <input class="form-control py-2" type="search" value="search">
使用🎜>使用🎜>使用🎜> Bootstrap 4 輸入組元素:
<div class="input-group col-md-4"> <input class="form-control py-2 border-right-0 border" type="search" value="search">
<div class="input-group"> <input class="form-control py-2 border-right-0 border" type="search" value="search">
無背景的輸入組文字:
<div class="row no-gutters"> <div class="col"> <input class="form-control border-secondary border-right-0 rounded-0" type="search" value="search">
無背景的輸入組文字:
無背景的輸入組文字:<div class="input-group"> <span class="input-group-prepend"> <div class="input-group-text bg-transparent border-right-0"> <i class="fa fa-search"></i> </div> </span> <input class="form-control py-2 border-left-0 border" type="search" value="...">
<div class="input-group is-invalid"> <input class="form-control" type="search" value="">
以上是如何在 Bootstrap 4 和 5 中新增圖示到搜尋輸入?的詳細內容。更多資訊請關注PHP中文網其他相關文章!