上部に固定 Div を作成します。
CSS
#header {
position: fixed;
top: 0px;
height: 20px;
width: 100%;
background: green;
}
ページを送信するときに、ヘッダーの固定 div が更新されないようにしたい。
上部に固定 Div を作成します。
CSS
#header {
position: fixed;
top: 0px;
height: 20px;
width: 100%;
background: green;
}
ページを送信するときに、ヘッダーの固定 div が更新されないようにしたい。