为数据列表中的选项提供固定长度

时间:2013-03-28 08:43:17

标签: html css html5 alignment width

我有这个HTML代码:

<style type="text/css">
.select {
    white-space:pre-wrap;
    background-color:#FF9;  
        width: 500px;
}
</style>
<input type="text" list="browsers" class="select"/>
<datalist  id=browsers >
    <?php while ($row_Recordset1 = mysql_fetch_assoc($Recordset1)) {;?>
    <option>
        <?php echo $row_Recordset1['RBC']; }?>
    </option>
</datalist>

我有一些超过500px的数据,所以当我点击文本框时 列表宽度大于文本框宽度(500px)

如何修复列表宽度?

1 个答案:

答案 0 :(得分:0)

你能做到的唯一方法就是使用带有white-space属性和no-wrap的CSS http://www.w3schools.com/cssref/pr_text_white-space.asp

或者您可以在输入周围使用div来强制大小,让输入为它需要的大小,并使用带有overflow-x的div来控制大小并将其强制为500px宽度。