码迷,mamicode.com
首页 > 其他好文 > 详细

让textArea的placeholder垂直居中,输入文字时不会居中

时间:2018-06-24 19:37:10      阅读:972      评论:0      收藏:0      [点我收藏+]

标签:pre   fir   span   web   class   垂直   输入   nbsp   AC   

<style>
    #textArea {
      color: white;
      height: 50px;
    }
    #textArea::-webkit-input-placeholder{
      height: 50px;line-height: 50px
    }    /* 使用webkit内核的浏览器 */
    #textArea:-moz-placeholder{
      height: 50px;line-height: 50px
    }                  /* Firefox版本4-18 */
    #textArea::-moz-placeholder{
      height: 50px;line-height: 50px
    }                  /* Firefox版本19+ */
    #textArea:-ms-input-placeholder{
      height: 50px;line-height: 50px
    }
  </style>

 

让textArea的placeholder垂直居中,输入文字时不会居中

标签:pre   fir   span   web   class   垂直   输入   nbsp   AC   

原文地址:https://www.cnblogs.com/island1994/p/9221284.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!