Google Chrome bug with radio widget
I was testing a page I'd written specifically for FireFox with Google Chrome. It mostly works. Chrome must be Gecko-compatible. All the moz CSS settings work too. The Chrome version is 1.0.154.53.
Anyway, the only thing that didn't work correctly was the height for radio buttons. Debugging on FireFox with Firebug revealed that the height was set to auto. So I added this style -
to fix it (I had two radio options).
The radio widget sits inside a div with a fixed height but that was inside another div with a percentage height. Without the fix, the radio widget was taking up most of the vertical space.
Anyway, the only thing that didn't work correctly was the height for radio buttons. Debugging on FireFox with Firebug revealed that the height was set to auto. So I added this style -
.aw-ui-radio {height:40px}
to fix it (I had two radio options).
The radio widget sits inside a div with a fixed height but that was inside another div with a percentage height. Without the fix, the radio widget was taking up most of the vertical space.
Anthony
April 22,