我想让我的背景图片填满整个屏幕,但我找不到解决方案。如果有人能给予我一个适用于所有移动的设备的解决方案,那就太酷了。这是我的屏幕现在的样子:
我尝试了很多方法。下面是我当前的代码:
html { background: url('/path/to/img') no-repeat center center fixed !important; background-size: cover !important; height: 100%; }
vuktfyat1#
试试看:
html { background-image: ... no-repeat; background-size: cover; width: 100%; }
1条答案
按热度按时间vuktfyat1#
试试看: