|
- html, body, #app {
- width: 100%;
- height: 100%;
- padding: 0;
- margin: 0;
- }
- html::-webkit-scrollbar {
- display: none; /* 隐藏Webkit浏览器的滚动条 */
- }
- html {
- -ms-overflow-style: none; /* IE 和 Edge */
- scrollbar-width: none; /* Firefox */
- overflow: scroll; /* 保持滚动功能 */
- }
- img{
- display: block;
- }
|