IE6/7下多种方法移除button、input 默认边框和去掉焦
网站建设 2023-01-28 20:49www.1681989.com免费网站
一、去掉边框
看看基本的HTML
<div class="wrap">
<put type="text" class="put_txt">
<put type="submit" value="submit" class="put_btn">
<put type="button" value="提交" class="put_btn">
<div>
通常解决这样的bug最好的方法就是在button和put的标签外添加一个标签,然后将样式写在这个标签上,并且把button和put的默认样式都去除掉。
实现方式一设置CSS
<style type="text/css">
put{marg:0;paddg:0;}
.wrap{background-color:#0f0;}
.put_txt,.put_btn{border:0 none;}
</style>
实现方式二设置CSS,并使用滤镜
<!--[if IE]>
<style type="text/css">
put{marg:0;paddg:0;filter:chroma(color=#000000);border:none; }
.wrap{background-color:#0f0;}
</style>
<![endif]-->
此种方式貌似会有点问题!待在真实IE7环境中验证。
二、去掉焦点线
<style type="text/css">
a:focus, :focus {noFocusLe: expression(this.onFocus=this.blur());}
</style>
看看基本的HTML
复制代码
代码如下:<div class="wrap">
<put type="text" class="put_txt">
<put type="submit" value="submit" class="put_btn">
<put type="button" value="提交" class="put_btn">
<div>
通常解决这样的bug最好的方法就是在button和put的标签外添加一个标签,然后将样式写在这个标签上,并且把button和put的默认样式都去除掉。
实现方式一设置CSS
复制代码
代码如下:<style type="text/css">
put{marg:0;paddg:0;}
.wrap{background-color:#0f0;}
.put_txt,.put_btn{border:0 none;}
</style>
实现方式二设置CSS,并使用滤镜
复制代码
代码如下:<!--[if IE]>
<style type="text/css">
put{marg:0;paddg:0;filter:chroma(color=#000000);border:none; }
.wrap{background-color:#0f0;}
</style>
<![endif]-->
此种方式貌似会有点问题!待在真实IE7环境中验证。
二、去掉焦点线
复制代码
代码如下:<style type="text/css">
a:focus, :focus {noFocusLe: expression(this.onFocus=this.blur());}
</style>