背景的复合属性标签代码background
从上述内容中可以看出,设置与背景相关的属性都是以background开始,与字体设置属性相同。在css中,背景也可以很简单地通过background复合属性一次性设置。
【标签说明】
background: 取值
说明:在这里可以直接设置各种背景属性值,之间用空格隔开。
【实例】
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>CSS控制背景</title> <style type="text/css"> .bg1{ background:url(userbg.jpg) center repeat } .bg2{ background:url(other.GIF) top no-repeat} </style> </head> <body class="bg1" > <div class="bg2" style="height:250px">背景设置</div> </body> </html>
【运行结果】
在上述代码中,可以设置两种背景,一种应用于页面,采用背景
CSS控制背景
发表评论:
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。