如何让我的页脚对齐到底部?

Rog*_*tus 6 html css alignment footer

我是CSS的新手,并且已经查找了很多方法,但无法让页脚与底部对齐.有帮助吗?谢谢.

.footer {
    position: bottom;
    bottom: -10px;
    height: 30px;
    width: 100%;
    background-color: #171717;
    color: white;
}
Run Code Online (Sandbox Code Playgroud)

Cor*_*yRS 9

将位置更改为固定.

.footer {
    position:fixed;
    bottom:0px;
    height:30px;
    width:100%;
    background-color:#171717;
    color:white;
}
Run Code Online (Sandbox Code Playgroud)