页面上有几个 DetailView 的选项卡。
主字段显示在左侧,问题是列宽从小部件浮动到小部件。
// 'options' => ['width' => '500', 'class' => 'table table-striped table-bordered'],
不影响首先定位的主列(值在attributeLabels模型中设置)。如何固定列宽?
<?= DetailView::widget([
'model' => $model,
// 'options' => ['width' => '70', 'class' => 'table table-striped table-bordered'],
'attributes' => [
// 'id',
'user_id',
'country',
'region',
'city',
'street',
'building',
'house_number',
'apartment',
'comment',
],
]);