shanshanjiadexiaohai

由于placeholder是html5的属性,仅支持html5的浏览器才支持placeholder,目前最新的firefox、chrome、safari以及ie10都支持,ie6到ie9都不支持。

css代码如下

input::-webkit-input-placeholder { 
/* WebKit browsers */ 
color: #ccc; 
} 
input:-moz-placeholder { 
/* Mozilla Firefox 4 to 18 */ 
color: #ccc; 
} 
input::-moz-placeholder { 
/* Mozilla Firefox 19+ */ 
color: #ccc; 
} 
input:-ms-input-placeholder { 
/* Internet Explorer 10+ */ 
color: #ccc; 
}

 

分类:

技术点:

相关文章:

  • 2022-01-17
  • 2022-12-23
  • 2022-12-23
  • 2022-02-13
  • 2022-01-18
  • 2022-12-23
猜你喜欢
  • 2022-03-01
  • 2022-12-23
  • 2022-02-08
  • 2022-12-23
  • 2022-01-12
  • 2022-12-23
  • 2022-02-16
相关资源
相似解决方案