第一次页面显示时,下拉菜单未完全显示

时间:2012-01-12 16:42:02

标签: css

我有一个如下所示的下拉列表:

<select id="PageToCreate_AuthorID">
<option value="">Please select...</option>
<option value="1">Thierry</option>
<option value="2">Vanessa</option>
</select>      

首次显示页面时,显示的内容如下:

enter image description here

如您所见,我们没有看到控件内的所有文本。

然后我在里面点击并调整下拉列表:

enter image description here

如何在第一次显示该页面时正确显示下拉列表?

感谢。

1 个答案:

答案 0 :(得分:0)

尝试为您的select标记添加一些css:

<select id="PageToCreate_AuthorID">
   <option value="">Please select...</option>
   <option value="1">Thierry</option>
   <option value="2">Vanessa</option>
</select> 

的CSS:

#PageToCreate_AuthorID {
   min-width:200px; /* Change this value if you think you must do it */
}