给自己一点时间接受自己,爱自己,趁着下午茶的时间来学习图老师推荐的CSS3教程(5):网页背景图片,过去的都会过去,迎接崭新的开始,释放更美好的自己。
【 tulaoshi.com - Web开发 】
背景图片/纹理有很多种使用方式,常常用于添加网站的最佳的最终美化。现在它在CSS3中被重视,我们可以应用多背景图和背景图片尺寸来实现更完美的效果。
上一篇文章:CSS3教程(4):网页边框和网页文字阴影
CSS3的背景图片大小可以写成 background-size:Apx Bpx;
-Apx = x轴(图片宽度)
-Bpx = y轴(图片高度)
了解了这些,我们开始体验这个特性吧:
最好支持CSS3背景大小的浏览器是Safari和Opera,所以我们只需要使用-o和-webkit前缀。
#backgroundSize{border: 5px solid #bd9ec4;background:url(image_1.extention) bottom right no-repeat;-o-background-size: 150px 250px;-webkit-background-size: 150px 250px;padding: 15px 25px;height: inherit;width: 590px;}
浏览器支持:
Firefox(3.05+) Google Chrome(1.0.154+) Google Chrome(2.0.156+) Internet Explorer(IE7, IE8 RC1 ) Opera(9.6+) Safari(3.2.1+ windows)为了在CSS3中应用多背景图片,我们使用都好隔开,例如:
(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/webkaifa/)background: url(image_1.extention) top right no-repeat, url(image_2.extention) bottom right no-repeat;
我们可以在一行代码中尝试放置多个不同的图片
多背景图#backgroundMultiple{border: 5px solid #9e9aab;background:url(image_1.extention) top left no-repeat,url(image_2.extention) bottom left no-repeat,url(image_3.extention) bottom right no-repeat;padding: 15px 25px;height: inherit;width: 590px;}
浏览器支持:
Firefox(3.05+) Google Chrome(1.0.154+) Google Chrome(2.0.156+) Internet Explorer(IE7, IE8 RC1 ) Opera(9.6+) Safari(3.2.1+ windows)来源:http://www.tulaoshi.com/n/20160219/1630580.html
看过《CSS3教程(5):网页背景图片》的人还看了以下文章 更多>>