居中布局,一边是bg图案,另一边是纯色

时间:2013-04-04 16:10:31

标签: html css layout

我的问题非常接近这个问题:

Two fixed width full height columns, with seamless transition to blank space

除了我想在左侧使用bg图案并且右侧是无缝颜色。有什么想法吗?

1 个答案:

答案 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应指向服务器上背景图片的位置。

工作示例:http://jsbin.com/amunuz/21/edit