我的网站有一个包含三个背景图片的包装器。静态顶部和底部图像以及沿y轴重复的第三个图像。由于某种原因,顶部的背景图像被切断了,我无法弄明白。
以下是指向实际网站的链接:http://storrepictures.weebly.com/projects.html
我已经偏移了顶部和底部图像,因此您可以看到它们的外观。你可以看到顶部的一个被切断了。我已经尝试过使用一些div填充设置,但似乎无法让它工作。
一个有趣的注意事项:背景图像曾经是JPEG(我切换到PNG文件,因为我需要透明度)。当我使用JPEG时,这不是问题 - 三张图像完美排列。
让我知道是否有助于发布实际代码。从我在这个论坛上看到的内容来看,人们似乎喜欢看现场网站而且我不想让这篇帖子太长。
非常感谢你的帮助。
*这是CSS:
body {
background: #ffffff;
font-family: Tahoma, arial, sans-serif;
font-size:12px;
color:#666666;
margin: 0;
padding: 0;
}
#wrapper {
background: url(containerbg.png) center repeat-y;
}
#wrappertop{
background: url(containertop.png) no-repeat;
background-position: 0px -40px;
}
#wrappertbtm{
background: url(containerbtm.png) no-repeat;
background-position: 34px 480px;
padding-bottom: 65px;
}
.title{
width: 1022px;
min-height: 30px;
_height: 30px;
padding: 10px 0px 10px 0px;
font-size: 30px;
}
.title, .title a {
color: #fff;
}
#container {
width: 100%;
position: relative;
top: 125px;
bottom: 0px;
margin: 0px;
padding: -300px 0px 0px 0px;
}
#content{
width: 800px;
min-height: 500px;
_height: 500px;
margin: 0pt auto;
}
#content a{
color: #ff6633;
text-decoration: none;
}
.weebly_header{
background: url(%%HEADERIMG%%) no-repeat;
}
这是HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>{title}</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!--[if lt IE 7]>
<style>
#content
{
height:400px !important;
}
</style>
<![endif]-->
</head>
<body class="wsite-theme-light">
<div id="wrapper">
<div id="wrappertop">
<div id="wrappertbtm">
<div id="container">
<div id="header">
<div id="headerleft">{logo max-height="60"}</div>
<div id="navigation">{menu}</div>
</div>
<div id="content">{content}
<div id="footer">{footer}
</div>
</div>
</div>
</div>
</div>
</div>
</div>
答案 0 :(得分:0)
据我所知,您的body
元素有padding
和margin
值干扰:
body {
background: url(theme/backgroundtop.jpg?909894) left top repeat-x,
url(theme/backgroundbottom.jpg?909894) left bottom repeat-x,
url(theme/backgroundmid.jpg?909894) left repeat;
font-family: Tahoma, arial, sans-serif;
font-size: 12px;
color: #666666;
height: 100%;
margin: 100px 0 0 0;
padding: 100px 0 0 0;
}
你应该摆脱这些规则:
body {
/* ... */
margin: 0;
padding: 0;
}
一切都应该没问题。
注意:将height: 100%
设置为body元素毫无意义,您也可以删除它。
注意#2:您的身体的多个背景只有3个值,将被解析为T / LR / B,而顺序或那些值表示您应该更改订单,即backgroundtop / backgroundmid / backgroundbottom
而不是backgroundtop / backgroundbottom / backgroundmid