我在這裏有兩個複雜的問題,首先是如何確保頁腳不與我的文章的內容重疊。現在看來重疊它上面的東西,我似乎無法使滾動條與overflow: auto;
讓頁腳不重疊的內容
另外,我該如何讓<hr>
標籤工作監守現在看來搞糟我的整個Flexbox的,而且只以上徘徊第一個聯繫頁腳細節。
非常感謝您的幫助!
#footer {
\t \t \t \t position: absolute;
\t \t \t \t left: 20%;
\t \t \t \t bottom: 0%;
\t \t \t \t width: 50%;
\t \t \t \t height: 20%;
\t \t \t \t display: flex;
\t \t \t \t justify-content: space-between;
\t \t }
\t \t .contact_footer {
\t \t \t \t margin-left: 20%;
}
<footer>
<div id="footer">
<div class="container">
<div class="contact_footer">
<hr>
<h3>Contact</h3>
<address>
info
</address>
</div>
<div class="contact_footer">
<h3>Address</h3>
<address>
info
</address>
</div>
</div>
</div>
</footer>