我正在研究我的作品集:www.bbellmedia.com/mywork
我希望文本“Bryan Bell”居中,但在用户滚动时也可以修复。
实现这一目标的最佳方法是什么?
非常感谢你!
#header {
position:fixed;
text-align:center;
width:100%;
}
如果您希望图像不会超出您的标题,请使用此
.header {
....
position: fixed;
top: 0px;
width: 100%;
background-color: black;
z-index: 300;
}
.app1{
margin-top: 184px;
}
嘿,现在习惯了这个css * style-sheet *
.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;
}