作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的代码:
<div style="position:fixed; width:100%; height:70px; background-color:yellow; padding:5px; bottom:0px; ">
test content :D
</div>
我希望文本区域成为页脚,就像在 Messenger(聊天)中一样。 Here is how my footer text-area should be
[简短]我有一个作为页脚的 div,但我想要一个文本区域作为页脚
当我将 div 更改为文本区域时,我无法将其居中。 Like in the picture
最佳答案
你可以改变你的<div...>
元素到 <textarea...>
元素。
<textarea style="position:fixed; width:100%; height:70px; background-color:yellow; padding:5px; bottom:0px; ">
test content :D
</textarea>
关于html - 如何使页脚成为文本区域,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40069978/
我是一名优秀的程序员,十分优秀!