.bottom-bar {
position: fixed;
bottom: 0px;
width:100%;
height:33px;
background-color:#1a1a1a;
margin:0;
padding:0;
}
p.disclaimer {
color:white;
text-shadow: #000 0px 0px 0.5px, #000 0px 0px 0.5px, #000 0px 0px 0.5px,
#000 0px 0px 0.5px, #000 0px 0px 0.5px, #000 0px 0px 0.5px;
font-size:12px;
text-align:center;
}
<div class="bottom-bar">
<p class="disclaimer">John V 2015. No copyright infringement intended. <a href="mailto:example@example.com">Contact</a></p>
</div>
</body>
</html>
您好。我的底部div
拒绝一直向左伸展。它位于body
标记的底部,并且html
标记和ViewPager viewPager = (ViewPager)findViewById(R.id.view_pager);
viewPager.setOffScreenPageLimit(5);
标记都没有特定的样式(拉伸背景除外)。
想法?
P.S!我知道“没有版权侵权意图”是没用的。
答案 0 :(得分:3)
.bottom-bar { left: 0; right: 0;}
答案 1 :(得分:1)
body
标记的默认边距较小 - 您可以使用
body { margin: 0 }