ここに私のウェブサイトがありますので、問題を見ることができます: webpage
問題は、私.footer
が を持っているmargin: 50px 0 50px 0;
ことですが、何らかの理由で、上から 50px のマージンがないように見えます。何が問題を引き起こしているのかわかりません。
これがフッターセクションの完全なcssです(.dashed-footer
基本的に、破線の境界線を持つフッターの内部セクションです。)
CSS
.footer {
margin: 50px 0 50px 0;
background-color: #1d130e;
width: 100%;
min-width: 1000px;
height: 50px;
border-top: 1px solid #0d0907;
border-bottom: 1px soid #0d0907;
clear: both;
-webkit-box-shadow: 0px 0px 15px -1px #181513;
box-shadow: 0px 0px 15px -1px #181513;
}
.dashed-footer {
height: 37px;
margin-top: 5px;
text-align: center;
line-height: 38px;
border-top: 1px dashed #613e27 !important;
border-bottom: 1px dashed #613e27 !important;
color: #e6d7bb;
text-shadow: 1px 1px 0 #000;
}