2

ブラウザの下部に表示され、ユーザーがスクロールしてもその位置に留まるバーを作成するために使用される HTML/CSS は何ですか? 私が話していることのアイデアについては、envato.comを参照してください。

4

1 に答える 1

2

私は以前にこの方法を使用しましたが、うまく機能しているようです。

http://ryanfait.com/sticky-footer/

* {
    margin: 0;
}
html, body {
    height: 100%;
}
.wrapper {
    min-height: 100%;
    height: auto !important;
    height: 100%;
    margin: 0 auto -142px; /* the bottom margin is the negative value of the footer's height */
}
.footer, .push {
    height: 142px; /* .push must be the same height as .footer */
}
于 2010-01-13T16:58:36.287 に答える