忍者ブログ

からすまる日誌

親要素 display: flex; 子要素 position:fixed;の固定ボックスが、tableの下に入り込み文字が重なる

×

[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。

親要素 display: flex; 子要素 position:fixed;の固定ボックスが、tableの下に入り込み文字が重なる

親要素:

header {
 width:100%;
 height: 5rem;
 margin:0 auto;
 /*position: fixed;*/
 background-color: #fff;
 /*text-align: right;*/
 display: flex;
 justify-content: flex-end;
}
 
そのなかの子要素:
  
#top_bar{
width:600px;
background-color: #fff;
  position:fixed;
  left:auto;
  top:0;
margin:0;
text-align:right;
padding-bottom: 0.3rem;
border-bottom: 1px solid #ccc;
}

のとき、この固定headerが、画面下側にあるtableの下に入り込み、
文字が重なる



#top_barに
z-index: 9999;
を追加。
解決しました。

PR

コメント

ブログ内検索

カレンダー

03 2025/04 05
S M T W T F S
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30