在我的网站中,在特定的表格中,我必须插入图像作为背景。我这样做但图像看起来像双图像,因为图像小于单元格宽度和高度,它会重叠。
在背景图像单元格中,我使用no-repeat来结束相同图像的重复显示,但它不起作用。我正在使用django框架中的html设计网页。
模板是
<td background="{{ STATIC_URL }}images/sample.JPG" no-repeat;>
我是否知道如何取消在表格单元格中重复显示相同背景图像。
由于
答案 0 :(得分:6)
看看我是怎么做到的: 在模板中,我输入以下行:
<body id="bg" style="background-image: url('{% static "images/33.jpg"%}')";>
在css中:
#bg{
background-size: 1800px 900px;
background-repeat: no-repeat;
background-position: top;
background-attachment: fixed;
}
结果我获得了固定的背景和屏幕的比例。
答案 1 :(得分:4)
'no-repeat'
不是有效的html属性。为什么不使用样式属性或正确的css包含文件?
<td style="background: url('{{ STATIC_URL }}images/sample.JPG') no-repeat;">
答案 2 :(得分:0)
尝试如下......它会帮助你...
no repeats the image background
它还Stretch the image to Table Cell
..
<强> CSS:强>
<style>
.tdStyle
{
background-image:url('{{ STATIC_URL }}images/sample.JPG');
background-repeat:no-repeat;
background-size:100%;
}
</style>
要支持旧浏览器,您可以将以下行添加到CSS:
-moz-background-size: 100%; /* Gecko 1.9.2 (Firefox 3.6) */
-o-background-size: 100%; /* Opera 9.5 */
-webkit-background-size: 100%; /* Safari 3.0 */
-khtml-background-size: 100%; /* Konqueror 3.5.4 */
-moz-border-image: url(mtn.jpg) 0; /* Gecko 1.9.1 (Firefox 3.5) */
<强> HTML:强>
<td class="tdStyle">
答案 3 :(得分:0)
顺便说一句,我们创建了一个reusable app,允许通过管理网站更改背景图片。
答案 4 :(得分:0)
在CSS中,您将执行以下操作:
#.bg-image {
background-size: 100%;
background-position: center center;
background-repeat: no-repeat;
}
答案 5 :(得分:0)
.bgded{
background-image: url( "{% static 'images/ur.jpg' %}");
}
记住要通过添加来加载静态页面
{% load static %}
在HTML页面顶部。
答案 6 :(得分:0)
这对我有用。如果我们使用带有 background-image:url 的内联样式,我们必须手动创建路径。
<body id="bg" style="background-image: url('../images/33.jpg')";>