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.
如何在没有 css 定位的情况下设置背景图像以适应屏幕大小?我在做功课,我想设置背景图像,但我的教授说我不能使用定位,所以还有其他方法吗?
尝试这个
html{ background:url('backgroundimage.jpg') no-repeat center center; min-height:100%; min-width:100%; background-size:cover; } body{ min-height:100%;/*hack for some mobile browsers */ min-width:100%; }
参考链接