鍍金池/ 問答/HTML5  網(wǎng)絡(luò)安全  HTML/ Bootstrap4 input-group-btn 無效

Bootstrap4 input-group-btn 無效

<div class="input-group">
    <input type="text" class="form-control" id="">
    <span class="input-group-btn">
        <button class="btn btn-secondary" type="button">Go!</button>
    </span>
</div>
代碼是從官方復(fù)制出來的
引入了4.1的bootstrap.css和js 可是無論如何 input-group-btn 樣式只有以下
*, *::before, *::after {
    box-sizing: border-box;
}

如圖所示(測試環(huán)境Chrome 65):
圖片描述

但是換回3.3.7又正常了

如圖:
圖片描述

請問這是怎么回事呢?是我少引入了什么嗎?

回答
編輯回答
默念

bootstrap更新日志
你沒有少引入東西,是bootstrap4廢棄了.input-group-btn,你可以使用.input-group-append來代替。

2018年5月13日 09:56