我想要在我的页面顶部重复-x背景,但我希望它从中心开始重复,而不是在整个页面上重复。例如:
答案 0 :(得分:2)
一种方法是使用::after
伪选择器,如下所示:
body::after {
content: '';
position: absolute;
left: 50%;
right: 0;
top: 0;
bottom: 0;
z-index: -1;
background: url('http://i.imgur.com/2xPV3gf.png') repeat-x left top;
}
答案 1 :(得分:1)
只是一个简单的背景CSS声明
background-position: center;
background-repeat: repeat-x;
答案 2 :(得分:0)
background-position:center;
但您还需要:
background-attachment:fixed;
随之而来。
答案 3 :(得分:0)
您可以尝试这样的事情:
<div class="bg-skew"></div>
<p>Lorem ipsum dolor sit amet...</p>
使用单独的元素来保持背景并使用绝对定位来设置偏移。
CSS:
html, body {
height: 100%;
}
.bg-skew {
background-image: url('http://placekitten.com/50/50');
background-repeat: repeat-x;
background-position: 0 0;
width: 50%;
height: 100%;
position: absolute;
z-index: -1;
left: 50%;
top: 0;
}
您也可以使用伪元素而不是显式定义的元素。
您可能使用此方法的原因是您有一个预定义的父容器。
答案 4 :(得分:0)