1

我正在研究我的作品集:www.bbellmedia.com/mywork

我希望文本“Bryan Bell”居中,但在用户滚动时也可以修复。

实现这一目标的最佳方法是什么?

非常感谢你!

4

3 回答 3

1
#header {
  position:fixed;
  text-align:center;
  width:100%;
}
于 2012-07-12T03:19:42.500 回答
1

如果您希望图像不会超出您的标题,请使用此

.header {
   ....
   position: fixed;
   top: 0px;
   width: 100%;
   background-color: black;
   z-index: 300;
}

.app1{
   margin-top: 184px;
}
于 2012-07-12T03:29:00.393 回答
0

嘿,现在习惯了这个css * style-sheet *

.headerposition 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;
}
于 2012-07-12T04:02:05.423 回答