宽度不是在更高的屏幕分辨率上对齐

时间:2017-10-23 20:33:23

标签: html css

它似乎在其他浏览器和分辨率上工作正常,但在1920 x 1080不能正常工作。请参阅下面的图片链接。 "关于我们"蓝条比图像宽。

Image of the error

Issue found towards the bottom of the page on the about us image/link

非常感谢帮助解决这个问题!

2 个答案:

答案 0 :(得分:0)

图像不够宽。 这应该可以解决问题。

.frontbutton.hpimg4::before {
    background-size: cover;
}

答案 1 :(得分:0)

替换

.frontbutton.hpimg4::before {
width: -webkit-fill-available;
background-image: url(about-us.jpg);
background-size: cover;
}

用这个

div

在你的style.css中

它位于wp-content / themes / vantage-child /文件夹

希望这有帮助。