[css]将textarea前的文字设置在左上角

在使用textarea的时候,默认前面的文字是在最下面的,好丑,然后百度了一下,要在textarea加上vertical-align:top的css属性

代码:

<div class="in_inputtwo">
    <label class="itemTitle">描述:</label>
    <textarea rows="6" cols="50" style="vertical-align:top"></textarea>
</div>

结果:

[css]将textarea前的文字设置在左上角

比在下面的好看多了.

 

相关文章:

  • 2022-12-23
  • 2021-06-16
  • 2022-12-23
  • 2021-04-13
  • 2022-12-23
  • 2021-06-23
  • 2021-12-02
  • 2022-12-23
猜你喜欢
  • 2021-10-03
  • 2022-01-07
  • 2022-12-23
  • 2022-12-23
  • 2021-10-05
  • 2021-05-28
相关资源
相似解决方案