Bootstrap英雄单位的背景图像

时间:2013-08-29 13:56:36

标签: css twitter-bootstrap background

你可以帮我设一个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;
}

1 个答案:

答案 0 :(得分:6)

试试这个

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