我很好奇工作位置:如何在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