2009年3月22日星期日

HTML Select's scrollbars

IE6浏览器中,select中默认是没有horizontal scrollbar,如果option中的文字太长,就没法完整显示;而且option的title属性也不支持。

要实现horizontal scrollbar的效果,可以用DIV来进行模拟。要注意的是select不要设置width。代码示例如下:

<div style="overflow-x:scroll; width:100px; overflow: -moz-scrollbars-horizontal;">
<select size="3">
<option>horizontal scrollbar test example 1</option>
<option>horizontal scrollbar test example 10</option>
<option>horizontal scrollbar test example 100</option>
<option>horizontal scrollbar test example 1000</option>
<option>horizontal scrollbar test example 10000</option>
<select>
</div>


没有评论:

发表评论