关于火狐的侧/边/栏
firefox吧
全部回复
仅看楼主
level 4
水滴渊涛 楼主
求助一个关于火狐浏览器侧/边/栏的问题,如第1张图所示,firefox的侧/栏打开之后会把主页面的内容挤//推到另一边,请问有没有什么方法可以将firefox的侧/边/栏样式修改成不挤//推页面元素的那种浮层效果呢?就像图2里面这种,这是edge里面的“书签侧边栏”扩展实现的效果,我已经去查找了很多扩展了,都实现不了这种效果[泪]
2024年01月22日 13点01分 1
level 4
水滴渊涛 楼主
第1张图
2024年01月22日 13点01分 2
level 4
水滴渊涛 楼主
请问有没有什么侧/栏/扩/展,或者CSS样式能够实现这种浮层效果呢?
2024年01月22日 13点01分 4
level 4
水滴渊涛 楼主
补一下第二张图,刚才的楼没了
2024年01月22日 13点01分 6
level 4
水滴渊涛 楼主
或者只要不让侧/边/栏挤推主页面的方法都可以[乖]
2024年01月22日 13点01分 7
level 12
#menu_bookmarksSidebar {
display: -moz-box !important;
}
#bookmarks-view-children {
margin-top: -120px !important;
margin-left: -15px !important;
}
#sidebar-header {
display: none !important;
}
#sidebar-box {
display: block !important;
position: fixed!important;
top: 116px;
bottom: -35px;
width: 0px !important;
overflow-x: hidden !important;
appearance: none !important;
border: 1px solid transparent !important;
border-left: 0 !important;
opacity: 0 !important;
}
#sidebar-box:hover {
z-index: 3 !important;
width: 250px !important;
opacity: 1 !important;
}
#appcontent {
margin-left: 0.01px !important;
}
#sidebar-splitter {
display: none !important;
}
#sidebar {
display: block !important;
width: 100% !important;
height: 95%;
}
}
2024年01月23日 12点01分 9
谢谢!不过请问有CSS使用教程吗?我以前没有弄过这些
2024年01月23日 12点01分
@水滴渊涛 firefox地址栏输入about:support 打开配置文件夹,在配置文件新建chrome,将网盘的2个文件解压到chrome文件夹里。 https://pan.baidu.com/s/1BLgydpB5VELqhTFyzjM8bw?pwd=np47 提取码: np47
2024年01月23日 13点01分
@Robinho_7 刚刚试了,但是重启火狐之后没有发现侧栏有什么变化啊[泪]
2024年01月23日 13点01分
你先截取文件夹的位置,以及我发你的那些你放在什么地方。然后在截图浏览器的页面看看。。。
2024年01月23日 13点01分
level 4
水滴渊涛 楼主
2024年01月23日 13点01分 10
位置是ok的,浏览器的侧边栏截图我看看看
2024年01月23日 14点01分
@Robinho_7 图放在楼下了
2024年01月23日 14点01分
level 4
水滴渊涛 楼主
2024年01月23日 13点01分 11
level 12
这是我的页面,你的我也不知道啥情况显示不了。。。
2024年01月23日 14点01分 12
唉,我再查查是什么原因吧,谢谢你
2024年01月23日 14点01分
老哥,你可以让我看看你的chrome那个文件夹页面截图吗?我弄了好几天还是弄不好[泪]
2024年02月08日 03点02分
level 12
实在弄不了的话,你私聊我,看看怎么教你[黑线] 有时没看消息,不好意思哈。
2024年02月14日 16点02分 13
level 1
2026年03月13日 04点03分 14
这个是豆包给的方案,亲测有用。代码我放下面了
2026年03月13日 04点03分
@贴吧用户_QW183Ca /* 强制隐藏侧栏 */ #sidebar-box { display: none !important; } /* 隐藏侧栏开关按钮 */ #sidebar-button { display: none !important; }
2026年03月13日 04点03分
level 1
chrome中只放这一个文件
可以用记事本编辑好,更改文件扩展名
2026年03月13日 04点03分 15
1