我正在尝试实现以下设计:
我在页面上出现红色条纹时遇到问题,我不知道如何实现它..
我虽然使用背景图像,一个在标题中,一个在右侧边栏中。问题是我不知道如何使条纹相互连接。
我尝试了什么:
.header {
background-image: url('../images/header-background-2.png');
background-repeat: no-repeat;
background-position: center bottom;
-moz-background-size: cover;
-webkit-background-size: cover;
background-size: cover;
}
.sidebar {
display: block;
background-image: url('../images/sidebar-tile.png');
background-repeat: repeat;
background-position: center;
-moz-background-size: contain;
-webkit-background-size: contain;
background-size: contain;
}
但它不起作用..你可以在这里看到结果
知道如何实现吗?