我一直坐在这里几分钟,想弄清楚为什么我的css背景没有出现在我的wordpress博客上。所有其他css代码都在样式表中工作。我无法弄清楚出了什么问题。
这是代码。
body {
background-image:url('http:/www.itsnotch.com/images/itsnotchbg.jpg');
background-color: #000;
background-repeat:repeat-y;
background-position:top center;
font-family: Arial, sans-serif;
}
它出现在所有其他浏览器中,除了Internet Explorer。
答案 0 :(得分:1)
背景图片的网址错误:它在http:
之后缺少/答案 1 :(得分:1)
您错过了网址中的/。它应该是
background-image:url('http://www.itsnotch.com/images/itsnotchbg.jpg');
而不是
background-image:url('http:/www.itsnotch.com/images/itsnotchbg.jpg');
答案 2 :(得分:0)
嗯,你已经宣布了背景色和背景图片。你需要选择一个。默认情况下,浏览器使用上一个声明因此,在这种情况下,它将是您的背景颜色,而不是您的图像。
你刚刚看到黑色背景吗?
答案 3 :(得分:0)
尝试
background-image: url(http://www.itsnotch.com/images/itsnotchbg.jpg);