我需要一个带有页面内容的居中 div,以及在页面左右两侧分别对齐的重复背景:。在左侧,箭头图案应从页面左侧结束的位置开始,并重复到屏幕左侧的末尾,右侧也是如此。在右侧,它正确对齐,但这是巧合。当前代码在:this fiddle
HTML:
<body>
<div class="container">
<div class="content">
<p>
Lorem ipsum dolor sit amet
</p>
</div>
</div>
</body>
CSS:
* {
min-height: 100%;
margin: 0;
padding: 0;
}
body {
background-image: url('http://i.imgur.com/mcX3gBy.png');
background-attachment: fixed;
}
.container {
min-height: 100%;
}
.content {
margin: 0 auto;
width: 150px;
background-color: #fff;
min-height:100%;
}