having problems with IE

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • shane3341436
    New Member
    • Mar 2007
    • 63

    having problems with IE

    I'm using select field for listing a number of options. The width of the options are very wide compared to the select field width. The mozilla renders all the options very fine as it shows the full width of the options. But IE, it is always inviting troubles. IE shows the options of the select field whose width is equal to the select field width. So, I can't see the whole length options in IE. Is there any solution to this problem?
    Here is the example of the code
    Code:
    <tr><td >
    <select style="width:100px" name="menu">
    <option value="">Select Menu</option>
    <option value="1">Hello a very Good morning to everybody</option>
    </select>
    </td></tr>
  • just a feeling
    New Member
    • Aug 2007
    • 86

    #2
    Don't specify a width and it's gonna work.

    [HTML]<select name="menu" >
    <option value="">Select Menu</option>
    <option value="1">Hello a very Good morning to everybody</option>
    </select>[/HTML]

    Comment

    • shane3341436
      New Member
      • Mar 2007
      • 63

      #3
      Thank you for your response.
      But that is not what exactly I want. If I did not specify the width, the width of the select field becomes equal to the widest option in the list. When using 4 similar kinds of select fields in same row, it does not look good. I need to show the select field in IE exactly same as that is rendered by mozilla. Isn't it possible?

      Comment

      • shane3341436
        New Member
        • Mar 2007
        • 63

        #4
        I think nobody has read this post. Plz somebody read this.

        Comment

        Working...