在body
标记中,我添加了background-image
。但图像重复4次。如何修复它才能只显示一次?
HTML code:
<body background="image.png"></body>
CSS代码:
body{
background-image : no-repeat;
}
答案 0 :(得分:3)
它的背景重复 体
body{
background-repeat: no-repeat;
}
答案 1 :(得分:2)
您可以使用style属性为body标签添加样式:
<body style="background-image:url('image.png');background-repeat: no-repeat;">
答案 2 :(得分:1)
嗨现在习惯了
body{background:url('image.png') no-repeat};
或者
body{
background-image:url('image.png'); // for your body background
background-repeat: no-repeat; // for your body background repeat
}
答案 3 :(得分:0)
从正文中删除背景并应用如下所示的CSS。
body
{
background-image:url('image.png');
background-repeat:no-repeat;
}
答案 4 :(得分:0)
html {
background: url(http://p1.pichost.me/i/64/1886374.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
&#13;
<html>
<body>
</body>
</html>
&#13;