css 我有一个严重的问题,设置一个背景图像,以适应所有的屏幕

c2e8gylq  于 2023-06-07  发布在  其他
关注(0)|答案(1)|浏览(129)

我想设置一个背景图像,以适应所有的屏幕,它在winows上工作得很好,但当我在移动的上打开同一页面时,我在谷歌chrom上尝试了android,我觉得图像放大和缩小,特别是页面底部的一个边距已经创建,我不知道它从哪里来,
这个问题显示当我使用

background-attachment: fixed;

当我回忆起它的时候,一切都和预期的一样,但是图像看起来不像我想要的

background: url('image url');
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        background-attachment: fixed;

请帮帮忙!!!
我想在我的整个身体标签上设置一个背景图像,在页面底部没有这个边距

mqkwyuun

mqkwyuun1#

你可以试着用简写来表示背景:

background: url('image url') no-repeat center center fixed;

background-size: cover;

下面是一篇使用其他方法的文章:https://css-tricks.com/perfect-full-page-background-image/

相关问题