【发布时间】:2018-04-27 00:24:20
【问题描述】:
我不是编码员,但有一些基本知识,并且一直在编辑模板。该网站几乎就在那里 - 在桌面上看起来不错,但在移动设备上,封面图片并没有缩小。
我尝试将大小从 100%、auto 和 cover 更改为 vw 和 vh 等,但仍然无法正常工作。
这是 CSS:
.intro {
display: table;
height: auto;
width: auto; /* 100% originally */ .
padding: 0;
text-align: center;
color: #333;
background: url(../img/intro-bg.jpg) no-repeat center top;
background-color: #e5e5e5;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: auto;
-o-background-size: auto;
}
如果有人可以提供帮助,那就太好了!该网站是 adammillsmusic.com
谢谢!
【问题讨论】:
标签: css image background header