jQuery Mobile怎么让元素固定在顶部和底部,不让它消失
展开全部
这个不需要jquery mobile来处理。只要用css就行了。
设置顶部元素和底部元素的定位(position)为fixed即可。
举例如下:
HTML代码:
<header>我是顶部</header>
<footer>我是底部</footer>
css代码:
header{
width: 100%;
height: 80px;
background: #000;
color: #FFF;
text-align: center;
line-height: 80px;
position: fixed;
top: 0;
left: 0;
}
footer{
width: 100%;
height: 50px;
text-align: center;
line-height: 50px;
background: red;
color: #FFF;
position: fixed;
bottom: 0;
left: 0;
}
运行结果:
这样的顶部和底部就固定在那了。不会因为页面的滚动而改变位置。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询