0

フッターが一番下にくるようにするために多くの提案された方法を使用しましたが、ウィンドウのサイズを変更して小さくすると、位置が原因​​でフッターがページから押し出されません。私は使用していますが、それ以外の場合、コンテンツがページ全体を埋めないため、通常のサイズではページの下部に留まりません。

手伝ってくれますか?

編集:CSS

html, body {
        margin:0;
        padding:0;
        height: 100%;
}

#container {

}

#spacer {
        height: 10px;
        background-color: #24246B;
}

@font-face {
        font-family: palatino;
        src: url('font/palatino.ttf');
}

@font-face {
        font-family: footer;
        src: url('font/footer.ttf');
}

.fb_widget {
    float: right;
    margin-right: 10px;
}

#header, #nav, article, section, body, #mail_success {
        font-family: palatino;
}


#header {
    margin-top: 1%;
    text-align: center;


/*  font-size: 60px;
    color: #F2E6FF;
    border: solid #24246B;
    background-color: #24246B;
    width: 25.5%;
    border-right-color: #4610B3;
    border-right-width: 25px;
    border-left-width: 15px;
    margin-top: 2%;
    text-align: right;*/
}


#nav ul {
    margin-top: 2%;
    line-height: 30px;
    font-size: 17px;
    text-align: center;
    background-color: #24246B; 
}

#nav ul li {
    display: inline;
}

#nav ul li a {
    text-decoration: none;
    color: #F2E6FF;
    padding: 7px 2% 6px 2%;
    font-weight: bold;
    border-radius: 20%;

    /* This makes it fade colour*/
    -o-transition: .5s;
    -ms-transition: .5s;
    -moz-transition:. 5s;
    -webkit-transition: .5s;
    transition: .5s;
}

#nav a:hover {
    color: #24246B;
    background-color: #F2E6FF;
    border-radius: 20%;
}

body {
    background-image: url('media/bg.png');
    padding-bottom: 60px;
    height: 100%;
    max-height: 100%;

}

article {
    color: #24246B;
    margin-left: 20%;
    margin-right: 20%;
    font-size: 20px;
    font-weight: bold;
}

section {
    font-weight: normal;
    font-size: 15px;
    text-align: justify;
    padding-left: 2%;
}

form {
    padding-left: 7%;
    font-size: 19px;
}

input {

    height: 25px;
    width: 300px;
    font-size: 14px;

}

.contact_submit {
    width: 110px; 
    margin-right: 50%;
    margin-left: 42%;
}

label {
    text-align: right;
    float: left;
    display: block;
    width: 260px;
    font-weight: bold;
}

label:after {
    content: "..";
    color: transparent;
}

#push {
    height: 4em;
}

footer {
    font-family: footer;
    color: #cccccc;
    font-size: 8px;
    text-transform: uppercase;
    font-style: italic;
    text-align: center;
    height: 4em;



}

footer:hover {

    /* This makes it transition*/
    -o-transition: .5s;
    -ms-transition: .5s;
    -moz-transition:. 5s;
    -webkit-transition: .5s;
    transition: .5s;
    color: #24246B;
    font-size: 12px;
}

#mail_success {
    text-align: center;
    padding: 7%;
    font-size: 17px;
    font-weight: bold;
}

@media screen and (max-device-width: 640px) {
    #logo {
        display: none;
    }
}

HTML

    <div id="push"></div>
</div>
<p></p>
    <footer>
        <p>&copy;2013 Built by Rob **</p>
        <p>Designed by Akash ** &amp; Rob **</p>
    </footer>
</body>

4

2 に答える 2

0

コードを貼り付けたり、jsfiddle を提供したりしていないので、次のことを行う必要があります。

CSS で、メディア クエリを使用し、画面の幅に基づいてフッターの表示方法を変更します。

ポートレートタブレット

@media (min-width: 481px) and (max-width: 768px)

横長のスマートフォン

@media (min-width: 321px) and (max-width: 480px)

縦型スマートフォン

@media (max-width: 320px)

それらを使用して、次を設定します。

#footer{
    position:whatever you want;
}

参考までに、これらのサイズに制限されているわけではありません。これらは一般的なものであり、必要に応じてカスタマイズしてください。

于 2013-08-01T12:53:46.307 に答える