答案 0 :(得分:1)
#header {
position:fixed;
text-align:center;
width:100%;
}
答案 1 :(得分:1)
如果您希望图像不在您的标题上,请使用此
.header {
....
position: fixed;
top: 0px;
width: 100%;
background-color: black;
z-index: 300;
}
.app1{
margin-top: 184px;
}
答案 2 :(得分:0)
嘿,现在已经习惯了 css * 样式表 *
.header
提供position fixed
,现在提供给left 0
right 0
top 0
并提供z-index maximum
.header {
left: 0;
position: fixed;
right: 0;
text-align: center;
top: 0;
z-index: 999;
}