increase height of listbox in IE7

前端 未结 2 1851

i have a listbox:


and i am

相关标签:
2条回答
  • 2021-01-25 07:39

    Did you explicitly declared height using CSS?

    #lstProblems{height:200px !important; display:inline-block;}
    
    0 讨论(0)
  • 2021-01-25 07:49

    With asp.net and IE8, I had a similar problem. The browser displayed the listbox with the wrong height. The problem went away when I added a Font-Size property to the ListBox control. I set it at 1em.

    <asp:ListBox ... Font-Size="1em" ...
    
    0 讨论(0)
提交回复
热议问题