CSS3教程(5):网页背景图片
背景图片/纹理有很多种使用方式,常常用于添加网站的最佳的最终美化。现在它在CSS3中被重视,我们可以应用多背景图和背景图片尺寸来实现更完美的效果。 上一篇文章:CSS3教程(4):网页边框和网页文字阴影 CSS3的背景图片大小可以写成 background-size:Apx Bpx; 了解了这些,我们开始体验这个特性吧: 背景大小#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; } 浏览器支持:
为了在CSS3中应用多背景图片,我们使用都好隔开,例如: 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; } 浏览器支持:
|
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |