Textarea高度基于占位符

时间:2017-09-12 12:38:23

标签: javascript jquery css html5

如果显示占位符,我试图用textarea高度来解决问题。对于文本调整大小,我使用: monospaced / angular-elastic ,它可以正常工作。

我的问题在于占位符:

是否可以根据占位符的高度调整占位符的高度?

textarea {
          min-height: 18px;
          display: block;
          color: #4B565C;
          word-wrap: break-word;
          resize: none;
          overflow: hidden;
          width: 100%;
          padding: 0;
          border: 0;
          display: block;
          line-height: 1.4;
        }

HTML:

<textarea 
       msd-elastic 
       ng-model="ng.model"
       ng-trim="false"
       ng-focus="ng.fnFocus()"
       ng-blur="ng.fnBlur()"
       ng-paste="ng.fnPaste($event)"
       ng-change="ng.fnChange()"
       placeholder="ng.placeholderText">
</textarea>

0 个答案:

没有答案