Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法,如果用户将屏幕尺寸更改为小于某个像素,例如 1025 像素,那么 div 将可以滚动?
我进行了搜索,但似乎找不到任何东西。
是的
@media only screen and (min-device-width : 1025px) and (max-device-width : 1024px) { /** STYLES FOR SMALLER SCREENS HERE **/ body { padding:0px; } }
我不确定,但我觉得只要你的 div 没有禁用滚动并且位置没有固定,它就会自动出现。