我的问题非常接近这个问题:
Two fixed width full height columns, with seamless transition to blank space
除了我想在左侧使用bg图案并且右侧是无缝颜色。有什么想法吗?
答案 0 :(得分:0)
添加具有repeat
(或repeat-y
)值的背景属性:
#navigation {
display: table-cell;
width: 200px;
background: #fff url(http://placedog.com/400/300) scroll repeat-y top left;
}
url
应指向服务器上背景图片的位置。