在ie7中不使用填充

时间:2010-06-01 06:24:16

标签: html css internet-explorer internet-explorer-7

我在性别的选择列表中使用了填充,但它在ie7中不起作用。 它在所有浏览器ie8,firefox,safari中正常工作但不工作 在iee7我尝试了很多但没有发生任何事情......

<div class="clear" style="margin-top:5px; float:left; text-align:right">
                          <% @sex = [['male', '0'],['female', '1'], ['others', '2']] %> 
                          <%= select_tag :sex,
options_for_select(@sex), :style=>"padding-left:15px; width:100px;
height:30px;padding-left:15px;vertical-align:middle;" %>
</div>

由于 Mayur Mate

1 个答案:

答案 0 :(得分:4)

只需在div中添加display:inline-block并使用正确的DOCTYPE,例如

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
   "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">