首页 > 代码库 > 2.页面中常见问题
2.页面中常见问题
1>.a标签在firefox,ie点击完后有虚线的问题
答:ie:在a上面加hidefocus=“true”;firefox:a{outline:none;}
2>.chrome里文本框默认背景色
答:
可以对input:-webkit-autofill使用足够大的纯色内阴影来覆盖input输入框的黄色背景;如:
复制代码 代码如下:
input:-webkit-autofill {
-webkit-box-shadow: 0 0 0px 1000px white inset;
border: 1px solid #CCC!important;
}
如 果你有使用圆角等属性,或者发现输入框的长度高度不太对,可以对其进行调整,除了chrome默认定义的background- color,background-image,color不能 用!important提升其优先级以外,其他的属性均可使用!important提升其 优先级,如:
复制代码 代码如下:
input:-webkit-autofill {
-webkit-box-shadow: 0 0 0px 1000px white inset;
border: 1px solid #CCC!important;
height: 27px!important;
line-height: 27px!important;
border-radius: 0 4px 4px 0;
}
3>.ie下iframe透明
答:allowtransparency="true"
4>.去掉ie10+文本框默认黑差号
答:input::-ms-clear{display:none;}
5>.chrome文本框光标大小
- 除IE内核浏览器外,缺省
line-height
时都会自适应文本框的height
。 - IE下
line-height
对文本框有效,加上与相同的height
后可以让IE也垂直居中。line-height
超过height
时,文本框获得焦点后拖动鼠标或按 上下键会出现上下滚动的现象。 - Webkit内核下,当缺省
line-height
是,文本会自适应文本框height
。 并且line-height
对其有效。 - Geoko下,它的值会随
font-size
的改变而改变(可以通过firebug来看计算样式),而不能由 网页开发人员来定义。 - Geoko下,文本框获得焦点时的光标的大小由文本框的
height
决定,基本等于文本框的height
。 - Opera的表现最为优雅,
line-height
完全无效,文本始终垂直居中,光标也不会出现Geoko的 问题。 - 有时候会受font-size的影响,line-height和font-size设置为一样的时候,光标居中
@media screen and (-webkit-min-device-pixel-ratio:0) {
.a{ line-height:25px;}
}
2.页面中常见问题