Hi All,
I m using a ruby code in select list i need 15px gap from left so i used a padding left="15px" its working fine in firefox but its not working ie and safari so i want to use text-indent ="15px" its working fine i safari and ie but not in firefox please any one help me to resolve this problem,, padding left is working fine in textfeild but why it giving problem in ie and safari ...
Code:
<% @sex = [['male', '0'],['female', '1'], ['other', '2']] %>
<%= select_tag :sex, options_for_select(@sex), :style=>"width:100px; height:30px;padding-left:15px;vertical-align:middle;" %>
Thanks