我的代码:
<div style="position:fixed; width:100%; height:70px; background-color:yellow; padding:5px; bottom:0px; ">
test content :D
</div>
我想要一个文本区域就像信使(聊天)中的页脚一样。Here is how my footer text-area should be
[Inshort] 我有一个div是一个页脚,但我希望文本区域是一个页脚
当我将div更改为文本区域时,我无法将其居中。 Like in the picture
答案 0 :(得分:0)
您需要使用<div>
作为<form>
元素的容器,其中包含所有表单元素,在本例中为文本区域。
答案 1 :(得分:0)
您只需将<div...>
元素更改为<textarea...>
元素即可。
<textarea style="position:fixed; width:100%; height:70px; background-color:yellow; padding:5px; bottom:0px; ">
test content :D
</textarea>