如何在IE 6中的复选框之前删除空格?

时间:2014-09-17 12:02:55

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

我知道这是一个古老的问题,几乎有很多答案,但它们似乎都没有适用于IE 6.我也尝试了this question中建议的方法,没有太多运气。

接近工作的唯一解决方案是使用div创建border,然后明确提及heightwidth,然后指定margin:0。但这会大大减小复选框的大小。

有没有一个简洁的方法来做到这一点,尽可能少的开销?

1 个答案:

答案 0 :(得分:0)

S4san,

试试这个。你必须为IE 6编写CSS Hack。

<style type="text/css">
    *{margin:0; padding:0; font-family:Tahoma; color:#333; font-size:12px;}
    .chk_bx{margin:-4px -3px 0 -4px !ie; vertical-align:top;}
</style>

<input type="checkbox" class="chk_bx" />Your Text