桌面/平板/移动网站中的中心图像

时间:2017-10-18 17:57:56

标签: css web resizable

早上好,

很抱歉打扰基本问题,但我需要在背景上制作纯色设计,在死角上制作一个图形。我所做的是在桌面电脑上工作,但不幸的是,当我在手机或平板电脑上使用时,图形会被切断。

我做了什么:

body {
background-color: #000;
background-image: url(static/images/coming-background.jpg);
background-position: center center;
background-size: fixed;
background-attachment: fixed;
background-repeat: no-repeat;
}

由于

1 个答案:

答案 0 :(得分:0)

background-size属性设置为inheritinitial对我有用:

body {
    background-color: #000;
    background-image: url(static/images/coming-background.jpg);
    background-position: center;
    background-size: inherit;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

DEMO