我不明白为什么我的页脚略微位于网页底部而不是直接位于底部
h6 {
font-family: Neue Haas Grotesk, sans-serif;
font-weight: 300;
font-size: 1.4vw;
color: white;
position: relative;
display: block;
}
.footer {
position: relative;
display: inline;
bottom: 0;
width: 100%;
height: 100%;
margin-bottom: 0;
padding: 0;
}

<div class="footer">
<h6>© Alex Burger. All rights reserved<br>Further information can be requested through email.</h6>
</div>
&#13;
答案 0 :(得分:2)
x=np.random.randint(1, 100, size=1000000)
print(x.shape)
start=time.time()
x=x.reshape(-1, 10000)
sum1=np.sum(x, axis=1).reshape((-1, 1))
prob=x/sum1
stop=time.time()
print(stop-start)
标记具有原生边距。所以你的问题将通过以下方式解决:
<h6>
请注意,设置.footer h6 {
margin-bottom: 10px;
}
没有您期望的结果,只有在更改文档的其他部分时才能解决此问题。