のラベルの位置を設定します。Yii2私はこのようなフォームフィールドと設定ラベルを使用して入力フィールド
私は右側に表示することができますどのように入力フィールド の左側にある <?= $form->field($unit, 'estimated_time')->textInput(['style' => 'width: 50px'])->label("Minutes") ?>
が、ラベル表示?
のラベルの位置を設定します。Yii2私はこのようなフォームフィールドと設定ラベルを使用して入力フィールド
私は右側に表示することができますどのように入力フィールド の左側にある <?= $form->field($unit, 'estimated_time')->textInput(['style' => 'width: 50px'])->label("Minutes") ?>
が、ラベル表示?
はこれを試してみてください:
<?= $form->field($unit, 'estimated_time')->textInput(['style' => 'width: 50px'])->label('Your Label',['class'=>'label-class']) ?>
は、以下のようなあなたの入力のための
.label-class{
float: right;
}
割り当てスタイルとしてCSSを追加します。
<?= $form->field($unit, 'estimated_time', [
'template' => '<div style="float:right;">{label}</div>{input}{error}{hint}'
]);?>
複数の基準 http://www.yiiframework.com/doc-2.0/yii-bootstrap-activefield.html
私は良い解決策があると思います
<?= $form->field($unit, 'estimated_time', [
'template' => '{input}{label}{error}{hint}',
'options' => ['class' => 'form-group form-inline'],]
->textInput([
'style' => 'width: 50px; margin-right: 10px;']); ?>