-3

我希望我的样式表能够控制每个页面的背景图像,能够为每个页面使用不同的背景。

4

2 回答 2

1

你可以给每个body元素一个id. 然后,您可以使用多个 id 选择器自定义 CSS:

body#index-page { 
  background: red;
}

body#about-us { 
  background: blue; 
}
于 2013-04-02T21:07:59.127 回答
0

您可以使用放置在每个页面顶部的 css 来做到这一点。

以以下方式:

<head>
     ...
     <style type="text/css">
          body {background: url(path to page specific bg image);}
     </style>
</head>

这个 css 将克服样式表中的一般 css,并且您将为每个页面指定不同的 bg。

希望能帮助到你

于 2013-04-02T21:02:17.757 回答