美文网首页
使用css 让 textArea标题置顶

使用css 让 textArea标题置顶

作者: Mr菜头 | 来源:发表于2019-05-30 17:25 被阅读0次

有时候需要让标题和textArea 齐平 如:

image.png
html
  <div class="text-box">
                <lable class="edi">描述:</lable>
              <textarea></textarea>
        </div>

CSS

  .editor-title {
    display: inline-block;
    width: 70px;
    text-align: right;
    font-size: 1em;
    margin-right: 10px;
    cursor: default;
    min-width: 70px;
}

textarea {
    vertical-align: top;
    width: 480px;
    height: 80px;
    min-width: 480px;
}

vertical-align: top; 就可以使得lable 和 text area齐平

相关文章

网友评论

      本文标题:使用css 让 textArea标题置顶

      本文链接:https://www.haomeiwen.com/subject/nfgvtctx.html