2016-05-04 15 views

答えて

0

はこれを試してみてください:

<?= $form->field($unit, 'estimated_time')->textInput(['style' => 'width: 50px'])->label('Your Label',['class'=>'label-class']) ?> 

は、以下のようなあなたの入力のための

.label-class{ 
    float: right; 
} 
1

私は良い解決策があると思います

<?= $form->field($unit, 'estimated_time', [ 
    'template' => '{input}{label}{error}{hint}', 
    'options' => ['class' => 'form-group form-inline'],] 
    ->textInput([ 
    'style' => 'width: 50px; margin-right: 10px;']); ?> 
関連する問題