目前我正在使用wicket作为应用程序,我在html页面中放置了一个调色板。一切都很好,但是当我插入一个更长的选项然后调色板的大小我失去了一半的选项字符串。我通过修改以下CSS标记在Chrome中解决
table.palette td.pane select {
overflow-x: scroll;
width: 100%;
}
html代码:
<select class="choicesSelect" name="destinatari:choices" id="choices3f" multiple="multiple" size="20" onfocus="Wicket.Palette.choicesOnFocus('choices3f','selection40','recorder3e');" ondblclick="Wicket.Palette.add('choices3f','selection40','recorder3e');">
<option value="0000024174">null|null|null</option>
<option value="0000026648">null|null|null</option>
<option value="0000008473">ZWINA|ROMA | null</option>
</select>
click here to see html code and css
但是Firefox似乎没有认识到这些说明。 我该如何解决我的问题? (我需要显示垂直和水平滚动条)。