|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
在Div+CSS标准化的影响下,网页设计人员已经把这一要求作为行业标准。那么什么是Div+CSS标准?Div+CSS的标准化设计到底有什么好处?
破洛洛文章简介:css3以下版本的background只能独自对一张图片举行背景设置、平展体例、背景地位。而在css3付与了它更年夜的权力,能够设置更多背景图片,这就是明天要说的css3多重背景。
关于background不用多做注释了,假如不懂得的能够独自论坛发帖。
css3以下版本的background只能独自对一张图片举行背景设置、平展体例、背景地位。而在css3付与了它更年夜的权力,能够设置更多背景图片,这就是明天要说的css3多重背景。
多重背景语法:background:背景,背景,背景;
1.background:url(images/weather-cloud.png)centercenterno-repeat,url(images/weather-clouds.png)topleftno-repeat,url(images/weather-cloudy.png)toprightno-repeat,url(images/weather-rain.png)bottomleftno-repeat,url(images/weather-snow.png)bottomrightno-repeat;
这类也是由css2中的background晋级过去,只不外撑持了多重背景。一样它也分隔来写:
1.background-image:url(images/weather-cloud.png),url(images/weather-clouds.png),url(images/weather-cloudy.png),url(images/weather-rain.png),url(images/weather-snow.png);2.background-repeat:no-repeat;3.background-position:centercenter,topleft,topright,bottomleft,bottomright;
牢记:image挪用几个,假如不共用其他属性,必需分离写出属性。
</p>
在主页制作时采用CSS技术,可以有效地对页面的布局、字体、颜色、背景和其它效果实现更加精确的控制。 |
|