I’m trying to apply a border stroke and colour as shown below to a <select>:
style="border:solid 1px #FF0000;"
It displays fine in Google Chrome, Safari, Firefox but not IE7. Is there a work around or is it not supported?
Thanks!
I’m trying to apply a border stroke and colour as shown below to a <select>:
style="border:solid 1px #FF0000;"
It displays fine in Google Chrome, Safari, Firefox but not IE7. Is there a work around or is it not supported?
Thanks!
You can’t apply border on select element in IE. But you can use a wrapper div or span element with border.
OK - Thanks - I was wondering if that was the case.