1. ホーム
  2. html

[解決済み】フッターをページの下部に中央に配置するにはどうすればよいですか?

2022-02-17 07:01:20

質問内容

フッターをページ下部の中央に配置するのに苦労しています。以下は私のコードです。

footer {
background-color: #FFF;
position:fixed;
bottom: 0px;
width: 400px;
text-align: center;
}
<footer align="center">
    <p>March 25, 2</p>
</footer>

解決方法は?

幅を100%に設定するだけ

width: 100%;