首页 > 解决方案 > 我想在 css 中增加背景的宽度,我该怎么做?

问题描述

如何增加我的背景宽度

下面给出的是我的代码。

#introSection {
    color: white;
    background: center / contain no-repeat url("/static/bg.jpg");
    height: 300px;
    background-color: red;
}

标签: css

解决方案


为了使basckgroudcover成为div,只需将行更改为:

background: center / cover no-repeat url("/static/bg.jpg");

有关调整背景大小的各种选项的更多信息,请参阅MDN 。


推荐阅读