【发布时间】:2018-04-02 05:09:58
【问题描述】:
我在这里使用 vue.js 和 muse.ui,并且只使用没有 jquery 库的 javascript 和 css。 现在,每次输入字段获得焦点时,页脚位置始终位于键盘顶部。 每次输入获得焦点时,是否可以(能够)将页脚位置放在键盘后面?
#foot {
position: absolute;
bottom: 0;
text-align: center;
margin-bottom: 30px;
}
<form>
<div class="wrapper">
<mu-text-field type="text" />
</div>
</form>
<footer>
<mu-col class="foot">blablablablablablabla</mu-col>
</footer>
【问题讨论】:
标签: javascript html css vue.js