采纳答案成功!
向帮助你的同学说点啥吧!感谢那些助人为乐的人
vue3
// App.vue <script setup> </script> <template> <div class="aaa"> </div> </template> <style scoped> .aaa { width: 100vh; height: 100vh; background-color: red; } </style>
我要占满一屏设置了宽高100vh为什么还能往下滚?要怎么改呢 谢谢
PC端也是啊,不能占满一屏
<template> <div class="aaa"></div> </template> <script setup> </script> <style scoped> .aaa { width: 100vw; height: 100vh; background-color: red; } </style> 这个代码我试了是滚动不了的,注意width:100vw
是我的问题,谢谢
登录后可查看更多问答,登录/注册
前端内功修炼:5大主流布局系统进阶
852 8
698 8
739 7
863 7
733 6