2016-05-16 55 views
1

我在我的yii2項目中使用複選框。我想調整它,但不知道如何做到這一點。我可以在yii2中調整複選框嗎?怎麼做?複選框在yii2中調整大小

這是我的代碼:

$form->field($model, 'id')->checkbox(['label' => '  Vote', 'size' => 'lg']) 
+1

這和yii或php無關,把你的問題標記爲css和bootstrap。 –

回答

3

試試這個:

創建CSS並根據需要

.custom{ 
    width: 30px !important; 
    height: 30px !important; 
} 

使用類應用性能在Yii code:

<?=$form->field($model, 'id')->checkbox(['label' => 'Vote', 'class' => 'custom']) ?>