这是crossrider工具条扩展演示的链接
click here
这是工具栏的演示,它显示在网站的上方。
那么这个问题的解决方案是什么呢?
我试着改变它的css,这是
$('#xr-crossrider-example').css({
'background-color':'#2CB7F4',
height:'24px',
margin: 0,
padding: 0,
position:'fixed',
right:0,
top:0,
width:'100%',
'z-index':'999'
});发布于 2014-11-13 20:40:32
在您的CSS选择器中选择该栏,并使用position: fixed;将其粘贴到您的窗口顶部
如下所示:
.app_header_top {
position: fixed;
}https://stackoverflow.com/questions/26897895
复制相似问题