yii2 用 bootstrap 给元素添加背景色
Posted Chrdai
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了yii2 用 bootstrap 给元素添加背景色相关的知识,希望对你有一定的参考价值。
使用 bootstrap 给元素添加背景色
1、bootstrap 官网:http://getbootstrap.com/
2、bootstrap 中文官网:http://v3.bootcss.com/
<?= GridView::widget([ \'dataProvider\' => $dataProvider, \'filterModel\' => $searchModel, \'columns\' => [ [ \'attribute\' => \'status\', // 使用匿名函数添加 css 样式 // bg-danger 这个样式在 bootstrap 中文官网 -> 全局 css 样式 -> 辅助类 -> 情景背景色 \'contentOptions\' => function($model){ return ($model -> status == 1) ? [\'class\' => \'bg-danger\'] : []; }, ], ], ]); ?>
注:本文为作者(44106-kangaroo) 看完魏羲教你学Yii2.0 视频后所记,如有转载请注明出处:http://www.cnblogs.com/chrdai/p/7994471.html
以上是关于yii2 用 bootstrap 给元素添加背景色的主要内容,如果未能解决你的问题,请参考以下文章