-2

我如何尝试在引导程序中为 hero-unit 设置背景图像,它只是变成空白,它显示主体颜色,我也尝试设置 z-index 值,它只是不起作用,这是我第一次设计网页,我完全没有想法

这是代码,请指导..

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

是的,我已经仔细检查了我的图像路径和文件名....

4

1 回答 1

1

如果您的 css 位于 style.css 之类的外部文件中,并且您的图像不在同一个文件夹中

像这样

css/ 
  style.css
img/
  tech9.jpg
index.html

那么你的图片网址应该是这样的


    背景图像:url('../img/tech9.jpg');

于 2013-09-24T05:30:15.770 回答