次のようなフォーム要素があります:
$form['precio'] = array(
'#type' => 'textfield',
'#title' => t('Price'),
'#default_value' => $precio,
'#size' => 20,
'#attributes' => array(
'style'=>'background: none repeat scroll 0 0 #EAEAEA;'
),
'#description' => t('Change the price'),
);
「precio」にスタイル属性を追加するにはどうすればよいですか?
次のようにスタイル属性をネストできます。
$form['precio'] = array(
'#type' => 'textfield',
'#title' => t('Price'),
'#default_value' => $precio,
'#size' => 20,
'#attributes' => array(
'style'=>'background: none repeat scroll 0 0 #EAEAEA;
margin: 0 3 4;
color:red;'
),
'#description' => t('Change the price'),
);