私はどのように作品の位置:htmlタグの相対的な好奇心です。誰でも説明できますか?それはドキュメントオブジェクトまたはこれに似たものに相対的な位置付けですか?相対的な位置にhtmlを設定する
<footer class="footer">
<div class="container">
<p class="text-muted">Place sticky footer content here.</p>
</div>
</footer>
html {
position: relative;
min-height: 100%;
}
body {
/* Margin bottom by footer height */
margin-bottom: 60px;
}
.footer {
position: absolute;
bottom: 0;
width: 100%;
/* Set the fixed height of the footer here */
height: 60px;
background-color: #f5f5f5;
}
なぜガイドを読まないのですか?常にベストな選択です。 https://www.w3schools.com/css/css_positioning.asp –
[こちら](http://www.barelyfitz.com/screencast/html-training/css/positioning/)は、CSSの配置を学ぶための良いチュートリアルです – Lal
このチュートリアルのポイント4は、私がお礼をたくさん知りたいと思っていたものを私に説明しました – quimak