解决在IE6、7中用height来设定SELECT标签高度无效的兼容性问题

在IE6、7中用height来设定SELECT标签高度是无效的,宽度的话各浏览器设置都是一致的,解决方法就是在select外嵌套两层标签,一层用来遮挡select的默认边框(在IE6、7中设置border:0px也是无效的),另一层用来模拟”高度改变后的“select边框.
代码如下
html代码
<div class="standard_select">
    <!--边框-->
    <div class="select_shelter">
        <!--遮挡默认边框-->
        <select>
            <option selected="selected">水果</option>
            <option>苹果</option>
            <option>橘子</option>
            <option>葡萄</option>
            <option>桃子</option>
        </select>
    </div>
</div>

css代码

 .standard_select{ /*边框*/
            display:inline-block;
            *display:inline;
            zoom:1;
            border:solid 1px black;
            padding:5px; /*调整此处改变select高度*/
            *padding:7px;
        }
        .select_shelter{ /*遮挡默认边框*/
            display:inline-block;
            *display:inline;
            zoom:1;
            width:100px;
            *width:98px;
            height:20px;
            overflow:hidden;
        }
        select{
            *margin:-1px;
            padding:3px;
            border:0px;/*遮挡现代浏览器的select边框*/
            width:100px;
        }

 

转载于:https://www.cnblogs.com/sapho/p/4966285.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值