码迷,mamicode.com
首页 > Web开发 > 详细

css中的背景色渐变以及背景图的定位

时间:2015-12-03 13:18:47      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:

 

单纯的背景色渐变:

background: -webkit-gradient(linear, 0 0, 0 100%, color-stop(0, #fff), color-stop(1, #ddd));
background: linear-gradient(to bottom, #fff 0px, #ddd 100%) repeat scroll 0% 0%;

可以同时支持谷歌、火狐浏览器,兼容性比较强。

 

背景图的位置:

background:url("images/taocan-bg.png") no-repeat -315px 0px;

background:url("images/taocan-bg.png") no-repeat -315px bottom;

这两个是有区别的,bottom有的时候不显示,而0px会显示。

css中的背景色渐变以及背景图的定位

标签:

原文地址:http://www.cnblogs.com/wangyongx/p/5015561.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!