我有一个使用gif背景的Joomla网站:
<body style="background-color:#eeeeee; background-image:url(/images/new-background.gif); background-position: top center; background-repeat:no-repeat;" >
在除Firefox之外的每个浏览器中,当前背景与页面内容正确对齐。
是否有针对Firefox的CSS黑客会强制使用不同的背景图像?我会把代码放在哪里?
答案 0 :(得分:2)
您应该通过浏览器规范化样式,而不是尝试强制使用不同的背景:
body {
margin: 0;
padding: 0;
}
此外,您应该将CSS保存在.css
文件中,通过以下方式链接:
<link rel="stylesheet" type="text/css" href="/path/to/stylesheet.css" />
答案 1 :(得分:0)
这不是你的背景。这是你的元素,看起来你有一些填充/边距被应用到你可能不想要的地方。 position.css适用:
* { margin: 0
padding:3px 0;
}