2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

HTML ヘッダーを固定したいが、重なってしまう

Posted at

問題の発生

ヘッダーを固定しようと思い、ヘッダー部分に以下を入力したが、重なってしまう・・・

position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 10000;

解決策

ヘッダー部分に背景色を追加したら重ならなくなりました(background-color: white;を追加)

position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 10000;
background-color: white;

感想

ヘッダー部分が透過しており、重なっているように見えてしまっていました。
単純な問題でした。

初学者の参考になれば幸いです

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?