Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的 HTML 表单中,我有以下内容
Title: <textarea cols="50" id="title" name="title" rows="4"></textarea>
结果是“标题:”这个词与文本区域底部的高度相同。我可以让它位于中间吗?
将垂直对齐设置为中间。
textarea {vertical-align:middle}
演示
<label>Title: <textarea cols="50" id="title" name="title" rows="4"></textarea></label>
然后设置标签元素的样式。