背景颜色50%一种颜色和50%另一种颜色

时间:2014-01-17 03:30:01

标签: css background gradient

在div中,我想在其宽度的前50%中放置背景颜色,在另外50%的宽度上放置另一种颜色。理想情况下,在调整大小时,我希望它无缝调整,不会产生任何伪影或抖动效果。

理想情况下,我希望避免在代码中使用其他div,因为我正在使用难以更改的现有HTML - 真正寻找100%CSS解决方案。

我正在寻找类似的东西(我用Fireworks嘲笑过): enter image description here

5 个答案:

答案 0 :(得分:10)

你可以使用类似的东西,但是根据你必须支持的浏览器,它可能无法在所有浏览器中使用。

background: linear-gradient(to left, #ff0000 50%, #0000ff 50%);

答案 1 :(得分:5)

您可以使用:before和:after伪元素。

#somediv {
  width:50%;
  height:100px;
  position: relative;
}

#somediv:after, #somediv:before {
  content:' ';
  position: absolute;
  width:50%;
  height:100%;
  z-index: -1;
}

#somediv:after {left: 0px; background: #F00;  }
#somediv:before {right: 0px; background: #00F;}

编辑:像http://plnkr.co/edit/hm9bHNuuzh2EK4zwn3nr?p=preview

一样

甚至可以在ie8中工作,渐变不会。

请告诉我这是否需要根据您的需求量身定制。

答案 2 :(得分:2)

您可以使用渐变,如下所示:http://jsfiddle.net/F3M5e/

相关代码:

background: #1e5799; /* Old browsers */
background: -moz-linear-gradient(top,  #1e5799 0%, #1e5799 50%, #000000 50%, #000000 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#1e5799), color-stop(50%,#1e5799), color-stop(50%,#000000), color-stop(100%,#000000)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  #1e5799 0%,#1e5799 50%,#000000 50%,#000000 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  #1e5799 0%,#1e5799 50%,#000000 50%,#000000 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  #1e5799 0%,#1e5799 50%,#000000 50%,#000000 100%); /* IE10+ */
background: linear-gradient(to bottom,  #1e5799 0%,#1e5799 50%,#000000 50%,#000000 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#000000',GradientType=0 ); /* IE6-9 */

修改:水平渐变http://jsfiddle.net/F3M5e/1/

答案 3 :(得分:1)

http://jsfiddle.net/Rn8PZ/

div {
    background: -webkit-linear-gradient(right, tan 50%, green 50%);
    background: -o-linear-gradient(right, tan 50%, green 50%);
    background: -moz-linear-gradient(right, tan 50%, green 50%);
    background: linear-gradient(to right, tan 50%, green 50%);
}

答案 4 :(得分:0)

.background{
 background: -webkit-linear-gradient(top, #2897e0 40%, #F1F1F1 40%);
 height:200px;
 
}

.background2{
  background: -webkit-linear-gradient(right, #2897e0 50%, #28e09c 50%);

 height:200px;
 
}
<html>
<body class="one">

<div class="background">
</div>
<div class="background2">
</div>
</body>
</html>