Maison  >  Article  >  développement back-end  >  Yii 控制dropdownlist / select 控件的宽度和 option 的宽度_PHP教程

Yii 控制dropdownlist / select 控件的宽度和 option 的宽度_PHP教程

WBOY
WBOYoriginal
2016-07-14 10:11:491147parcourir

默认情况下,
option的宽度会由options中最宽的元素决定,并且同时决定着select控件的宽度

 

\

在Yii中,如果需要自定义select控件的宽度,可以用 htmlOptions定义,如下:



$currentSelectSource,
CHtml::listData($modelSource, 'domain_hash', 'site_name'),
array('empty'=>'-- 全 部 --','style'=>'width:200px;')
);?>


如果要自定义option的宽度,就没办法了,只能写CSS来定义。


 

 

 

\

 

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/477254.htmlTechArticle默认情况下, option的宽度会由options中最宽的元素决定,并且同时决定着select控件的宽度 在Yii中,如果需要自定义select控件的宽度,可以用...
Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn