Skip to content Skip to sidebar Skip to footer

Ie Font Size Decrease Does Not Cause Select Box Height To Decrease

I have a font resize function on my page which increases the font size via javascript for the entire page. This works fine in most browsers except IE. When decreasing the font si

Solution 1:

After IE renders the select box, you cannot change the style of it with javascript (only adding, removing elements, not style or stuff like that). That's not a good thing.

As a work-around what I've done is creating a new select box (clone of the first) with the style that I desire, and then add it as a child of the container tag. That will display it correctly.

Post a Comment for "Ie Font Size Decrease Does Not Cause Select Box Height To Decrease"