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

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

除了我想在左侧使用bg模式,让右侧为无缝颜色。有任何想法吗?

最佳答案

添加具有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

关于html - 居中布局,一侧具有bg图案-另一侧为纯色,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15816312/

10-10 05:09