您能帮我在Bootstrap中为英雄单位设置背景图像吗,因为我遇到了问题,我的代码如下:

.hero-unit {
    background-image:url(../img/banner.jpg)
    padding: 60px;
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: 200;
    line-height: 30px;
    webkit-border-radius: 6px;
    moz-border-radius: 6px;
    border-radius: 6px;
}

最佳答案

尝试这个

.hero-unit {
   background: url('../img/banner.jpg');
}

关于css - 引导英雄单位的背景图片,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18512988/

10-12 14:03