Css边栏静态

时间:2016-08-18 09:18:29

标签: html css

当有人向下滚动 site 时,我希望左侧边栏和边距线保持不变。但侧边栏不断更改屏幕大小调整位置 here 。任何修复?

@media only screen and (max-width: 550px) {
    .side-bar-icon {
        display: none;
    }
    .side-line {
        position: relative;
        max-width: 36rem;
        border-right: none; !important;
        border-bottom: thick solid #ef4a60;
        padding-bottom: 30px;
        margin-bottom: 50px;
    }

参考代码 here

1 个答案:

答案 0 :(得分:1)

@media (min-width: 550px)
.eight.columns {
    width: 65.3333333333%;
    /* margin-left: 45%; comment this out*/
} 

.side-bar {
    position: relative;/* change fixed to relative */
    top: 1;
    left: 1;
}

只是添加,使用!important是非常糟糕的做法,除非非常非常重要。只是一个建议!

enter image description here