Yii2 Twitter Bootstrap徽章颜色未更改:徽章成功徽章危险e.t.c类未找到

时间:2018-11-04 16:47:54

标签: php css twitter-bootstrap twitter-bootstrap-3 yii2

Yii2 Twitter引导程序 徽章颜色不变。

  

在浏览器源代码中,我找不到徽章成功徽章危险等   课程。

这是我的PHP代码

<?= Html::tag('span',
    $model->enabled ? "Enabled" : "Disabled",
    [
      'class' => 'badge badge-' . ($model->enabled ? 'success' : 'danger')
    ])
?>

这是代码的结果。

enter image description here

浏览器源代码

enter image description here

这是CSS代码

enter image description here

1 个答案:

答案 0 :(得分:1)

badge-successbadge-danger等自Bootstrap 4起可用。您需要使用yiisoft/yii2-bootstrap4软件包或自己实现徽章的这些样式(请参见this codepen)。