2

嗨朋友们有没有可能得到像这样的双色背景,像这样的 100% 宽度和高度

这是示例图像:

示例图片 http://www.mediaserveit.com/demo/vivek/resources/question.png

(样本)左侧的白色其余为其他颜色。

如果我用 div 的手段

.left{
    float:left;
    width:30%; 
    background-color:#fff;
 }

.right{
    float:right;
    width:70%;
    background-color:#B97A57;
}

这使得高度问题。它的增加取决于 div 上的内容。如果我使用最小高度意味着它也在不同的屏幕上发生了变化。如果在 html 正文中有任何 hack 设置像这样的背景!因为我需要全屏

4

1 回答 1

5

使用渐变作为背景。

body{
    background: #fcfcfc; /* Old browsers */
    background: -moz-linear-gradient(left,  #fcfcfc 30%, #6b1717 30%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(30%,#fcfcfc), color-stop(30%,#6b1717)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(left,  #fcfcfc 30%,#6b1717 30%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(left,  #fcfcfc 30%,#6b1717 30%); /* Opera 11.10+ */
    background: -ms-linear-gradient(left,  #fcfcfc 30%,#6b1717 30%); /* IE10+ */
    background: linear-gradient(to right,  #fcfcfc 30%,#6b1717 30%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfcfc', endColorstr='#6b1717',GradientType=1 ); /* IE6-9 */    
}

使用生成的渐变:http: //www.colorzilla.com/gradient-editor/

演示:http: //jsfiddle.net/guE5L/

于 2013-07-27T12:02:53.817 回答