向下滚动时,徽标不在固定菜单中居中

时间:2016-11-07 12:48:15

标签: jquery html css

我买了一个中间有徽标的模板,但是当我向下滚动时,徽标会移动而不再居中。

Example

我设置绝对位置并添加左:自动,右:自动但仍然没有居中。那是为什么?

我的页面完全相同,只是我添加了:

position: absolute;
top: -1px;
left: auto;
right: auto;

贴上徽标并:

position: absolute;
top: -30px;
left: auto;
right: auto;

在主徽标上(不向下滚动)。

1 个答案:

答案 0 :(得分:2)

试试这个css

.cbx-header .stick .cbx-logo {
left: 0;
margin: 0 auto;
position: absolute;
right: 0;

}