我目前正在创建一个 drupal 7 模块。
我有一个文本字段:
$form['gestionvideos_videos']['input'] = array(
'#type' => 'textfield',
'#prefix' => '<div id="customSearch">',
'#suffix' => '</div>',
'#attributes' => array('onkeyup' => 'search();'),
);
我想在它前面放一个图像,并将它们都对齐在我的容器的右侧。我不知道我该怎么做?
谢谢你的帮助