当placeholder的字体大小跟input大小不一致时,实现placeholder垂直居中

如图:搜索和图标不是垂直居中着实难受

最终通过如下代码实现:

input::-webkit-input-placeholder { 
  transform: translate(0, 2px);
}

猜你喜欢

转载自www.cnblogs.com/nayek/p/12034913.html