gpt4 book ai didi

HTML 标签输入文本行高不起作用

转载 作者:太空宇宙 更新时间:2023-11-04 14:14:36 25 4
gpt4 key购买 nike

我有这个:

<form method="post" accept-charset="UTF-8" action="#" style="margin-left:130px;">

<input type="text" style="color:black;height:150px;width:325px;line-height: normal !important;display:block;" >

</form>

很简单。如果输入,文本在 mdll 中,我希望文本显示在顶部。

行高:正常!重要;不工作。

它在 IE 中运行良好,但在 firefox 和 chrome 中,文本出现在输入的中间。

我能做什么?

最佳答案

每当您需要更多空间时,请使用 <textarea>标签而不是 <input type="text">标签。使用内部或外部 css,因为在内部对多个相同类型的标签使用 css 规则是一个非常糟糕的主意。

Check it how to use it 
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
<style>
textarea{
-moz-box-sizing: border-box;
font-size: 0.857143rem;
line-height: 1.71429;
padding: 0.714286rem;
width: 325px;
height:150px;
}
</style>
</head>

<body>
<form method="post" accept-charset="UTF-8" action="#" style="margin-left:130px;">

<textarea id="comment" aria-required="true" rows="8" cols="45" name="comment"></textarea>

</form>
</body>
</html>

关于HTML 标签输入文本行高不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20454920/

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