不使用图像的多个背景

时间:2014-06-30 21:18:54

标签: css

是否可以在不使用图像的情况下在CSS中使用多个背景?

在我的情况下,我想要一个前20个左右像素的渐变,然后是白色。

2 个答案:

答案 0 :(得分:1)

请参阅ColorZilla了解渐变生成器 - 这是百分比,但我认为这个想法是正确的

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

答案 1 :(得分:1)

对于实际渐变,您可以使用

background: #113;
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#113), color-stop(20px,#fff));
background: -webkit-linear-gradient(top, #113 0%,#fff 20px);
background: linear-gradient(to bottom, #113 0%,#fff 20px);
background: -moz-linear-gradient(top, #113 0%, #fff 20px);
background: -ms-linear-gradient(top, #113 0%,#fff 20px);
background: -o-linear-gradient(top, #113 0%,#fff 20px);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#113', endColorstr='#fff',GradientType=0 );

您也可以使用插入框阴影

background: #fff;
box-shadow: inset 0 20px 20px -10px #113;

这也将从顶部创建一个20px的暗色渐变,变成白色。

我很遗憾还无法上传图片,所以我只会告诉你,Gradient和Box-Shadow DO略有不同。