当前位置:网站首页>后台系统右边内容如何出现滚动条和解决双滚动条的问题
后台系统右边内容如何出现滚动条和解决双滚动条的问题
2022-07-01 03:13:00 【ohm_coder】
1. 在<router-view />这里标签包住
<!-- 右边内容 -->
<div class="content_container">
<router-view></router-view>
</div>css
// 右边内容
.content_container {
position: absolute;
top: 70px;
left: 250px;
right: 0;
bottom: 0;
overflow-y: auto;
}关于css这样写的解释

2. 出现双滚动条

解决方式
在app.vue文件

代码
#app {
height: 100%;
overflow: hidden;
}完美解决
边栏推荐
- The value of the second servo encoder is linked to the NC virtual axis of Beifu PLC for display
- Huawei operator level router configuration example | BGP VPLS and LDP VPLS interworking example
- 最新接口自动化面试题
- Cloud native annual technology inventory is released! Ride the wind and waves at the right time
- Avalanche problem and the use of sentinel
- 线程数据共享和安全 -ThreadLocal
- Subnet division and subnet summary
- [linear DP] shortest editing distance
- POI exports excel and displays hierarchically according to parent-child nodes
- 完全背包问题
猜你喜欢
随机推荐
【EXSI】主机间传输文件
How to use hybrid format to output ISO files? isohybrid:command not found
shell脚本使用两个横杠接收外部参数
C#实现基于广度优先BFS求解无权图最短路径----完整程序展示
Error accessing URL 404
Feign远程调用和Getaway网关
调试定位导航遇到的问题总结
Huawei operator level router configuration example | configuration optionA mode cross domain LDP VPLS example
Nacos
POI导出excel,按照父子节点进行分级显示
雪崩问题以及sentinel的使用
Nacos
leetcode 1482 猜猜看啊,这道题目怎么二分?
监听器 Listener
Hal library operation STM32 serial port
C语言多线程编程入门学习笔记
Redis 教程
EtherCAT简介
Analyze datahub, a new generation metadata platform of 4.7K star
Mybati SQL statement printing

![[machine learning] vectorized computing -- a must on the way of machine learning](/img/3f/d672bb254f845ea705b3a0ca10ee19.png)






