我已搜索但无法获得正确的解决方案
我与以下帖子相差甚远: Bootstrap。如何添加多个添加词缀属性? 使用多个词缀属性
请有人帮我解决两个问题:
问题1:
http://jsfiddle.net/Spiral57/b9xTs/
#affix1.affix {
position: fixed;
background-color: #000;
width: 100%;
top: -10px;
z-index:1030;
}
#affix2.affix {
position: fixed;
width: 100%;
background-color: #000;
top: 105px;
z-index:1030;
}
#affix3.affix {
position: fixed;
width: 100%;
background-color: #000;
top: 155px;
z-index:1030;
}
@media (max-width: 767px) {
#affix3.affix {
position: fixed;
width: 100%;
background-color: #000;
top: 330px;
z-index:1030;
}
}
我需要将标题、导航栏和导航包装器固定在顶部,保持黑色背景。
问题 2
http://jsfiddle.net/Spiral57/wnbFf/
#affix4.affix {
position: fixed;
background-color: #fff;
right: 15px;
top: -10px;
z-index:1030;
}
#affix5.affix {
position: fixed;
width: 100%;
background-color: #fff;
top: 105px;
z-index:1030;
}
#affix6.affix {
position: fixed;
width: 99%;
background-color: #fff;
top: 155px;
z-index:1030;
}
@media (max-width: 767px) {
#affix6.affix {
position: fixed;
width: 92%;
background-color: #fff;
top: 330px;
z-index:1030;
}
}
我需要将标题、导航栏和导航包装器固定在顶部,保持白色背景。有了这个,我需要徽标保留在右侧。