日本免费全黄少妇一区二区三区-高清无码一区二区三区四区-欧美中文字幕日韩在线观看-国产福利诱惑在线网站-国产中文字幕一区在线-亚洲欧美精品日韩一区-久久国产精品国产精品国产-国产精久久久久久一区二区三区-欧美亚洲国产精品久久久久

IE6/7下多種方法移除button、input 默認(rèn)邊框和去掉焦點(diǎn)線

一、去掉邊框:

看看基本的HTML:

復(fù)制代碼代碼如下:
div class="wrap"
input type="text" class="input_txt"
input type="submit" value="https://www.rkxy.com.cn/dnjc/submit" class="input_btn"
input type="button" value="https://www.rkxy.com.cn/dnjc/提交" class="input_btn"
div

通常解決這樣的bug最好的方法就是在button和input的標(biāo)簽外添加一個(gè)標(biāo)簽,然后將樣式寫(xiě)在這個(gè)標(biāo)簽上,并且把button和input的默認(rèn)樣式都去除掉 。

實(shí)現(xiàn)方式一:設(shè)置CSS:

復(fù)制代碼代碼如下:
style type="text/css"
input{margin:0;padding:0;}
.wrap{background-color:#0f0;}
.input_txt,.input_btn{border:0 none;}
/style

實(shí)現(xiàn)方式二:設(shè)置CSS,并使用濾鏡:

復(fù)制代碼代碼如下:
!--[if IE]
style type="text/css"
input{margin:0;padding:0;filter:chroma(color=#000000);border:none; }
.wrap{background-color:#0f0;}
/style
![endif]--

此種方式貌似會(huì)有點(diǎn)問(wèn)題!待在真實(shí)IE7環(huán)境中驗(yàn)證 。

二、去掉焦點(diǎn)線:

復(fù)制代碼代碼如下:
style type="text/css"
a:focus, *:focus {noFocusLine: expression(this.onFocus=this.blur());}
/style

    推薦閱讀