gpt4 book ai didi

html - `<textarea>` 忽略 `width` 和 `height` 属性

转载 作者:太空宇宙 更新时间:2023-11-04 01:05:27 26 4
gpt4 key购买 nike

如何在 HTML 中设置文本区域的高度和宽度?

它们似乎被忽略了,默认值为 rowscols用于确定 <textarea> 的大小相反。

我正在查看 this page使用 Firefox 62。

    textarea   {
font-family: serif;
text-align: left;
border-top: 3px solid black;
border-left: 3px solid black;
border-bottom: 3px solid #808080;
border-right: 3px solid #808080;
}

div.row { white-space: nowrap; }

label.column1 {
font-family: sans-serif;
font-weight: bold;
text-align: right;
vertical-align: top;
padding: 0px 3px 0px 3px;
margin-top: 1px;
float: left;
width: 15em;
}
<div class="row" id="blogMsgRow">
<label class='column1' for='message'>
Message:
</label>
<textarea name="message" id="message" placeholder="[enter message]"
height='50%' width='80%'></textarea>
</div>

最佳答案

您可以设置 widthheightcss .
<textarea>标签没有 widthheight属性。
百分比 height除非父元素 div 否则将不起作用, 有一个固定的高度。

textarea {
font-family: serif;
text-align: left;
border-top: 3px solid black;
border-left: 3px solid black;
border-bottom: 3px solid #808080;
border-right: 3px solid #808080;
width: 80%;
height: 150px;
}

关于html - `&lt;textarea&gt;` 忽略 `width` 和 `height` 属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52323619/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com