0

我想仅在页面的第一行使用 CSS 的 background-image 属性显示背景图像。我怎么能这样做?我使用类似的代码;

background-image:url(backgr.png);
background-repeat:x-repeat;
background-position:left top;

但这提供了在所有行中重复图像。

4

2 回答 2

2

如果您在谈论页面的第一行,请考虑制作一个具有适当高度和宽度的 div。你应该把你的图像放在那里。

<html>
<head>
   <style type="text/css">
      body
      {
         background-image:url('yourimage.jpg');
         background-repeat:repeat-x;
      }
   </style>
</head>

<body>
   <p>Your text over here</p>
</body>
</html>
于 2012-10-02T08:23:59.247 回答
1

试试这个CSS:

background:url(backgr.png) repeat-x left top;
于 2012-10-02T08:29:36.400 回答