IE兼容性background:transparent IE中Bug,不能选中input输入框,出现这个问题主要是IE8
Posted cxchanpin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IE兼容性background:transparent IE中Bug,不能选中input输入框,出现这个问题主要是IE8相关的知识,希望对你有一定的参考价值。
先解释下,background:transparent,默认在IE上会被解析成 background: none transparent scroll repeat 0% 0%
transparent表示透明无颜色
none 表示没有设置背景图片
repeat 表示图片反复
scroll 表示背景图片随浏览器下拉而滚动
0%水平位置在x0
0%垂直位置在y0
眼下的解决方法就是干掉 background:transparent或者在IE下用图片,怎么使用图片看我还有一篇文章:
http://blog.csdn.net/dracotianlong/article/details/10444439
或者使用换成这样
background: url(../images/space.gif)repeat 0 0;
以上是关于IE兼容性background:transparent IE中Bug,不能选中input输入框,出现这个问题主要是IE8的主要内容,如果未能解决你的问题,请参考以下文章