我添加了一个简单的select元素(或asp.net DropDownList),包含2个项目,其中一个很长。宽度设置为某个小于项目的值,在IE9和FF中,列表会在您打开时展开。尼斯。但是当选择靠近监视器的边界时,项目就会再见,包括滚动条(如果存在的话)。功能很好,但显示屏只是被切断了。
<div>
<table style="width:1200px">
<tr>
<td align="right">
<select style="width:100px">
<option>Item one is very long and it goes for quite a long time</option>
<option>Shorter item</option>
</select>
</td>
</tr>
</table>
</div>
有人见过这个吗?通过谷歌找不到任何东西。我们以前只支持IE7和8,它没有扩展列表,在这个例子中它只会切断100px的项目。