我想仅在页面的第一行使用 CSS 的 background-image 属性显示背景图像。我怎么能这样做?我使用类似的代码;
background-image:url(backgr.png);
background-repeat:x-repeat;
background-position:left top;
但这提供了在所有行中重复图像。
我想仅在页面的第一行使用 CSS 的 background-image 属性显示背景图像。我怎么能这样做?我使用类似的代码;
background-image:url(backgr.png);
background-repeat:x-repeat;
background-position:left top;
但这提供了在所有行中重复图像。
如果您在谈论页面的第一行,请考虑制作一个具有适当高度和宽度的 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>
试试这个CSS:
background:url(backgr.png) repeat-x left top;