|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
每个声明内只能有一个属性,如果属性值中含有空格用双引号括起来例,在一个声明块内可以有多个声明,每个声明用分号隔开。
破洛洛文章简介:用DIV+CSS完成圆角。
用DIV+CSS完成圆角。
<style>
div.bg{color:#fff;font-size:18px;font-weight:700;background:#ff3300;width:50%}
b{display:block;}
/*将一切b标签转成块级元素*/
divb.topbb,divb.bottombb{height:1px;overflow:hidden;background:#ff3300;}
/*div标签内类名为topb/bottomb的谁人b标签的css属性值--高为1px,溢出部分埋没,背景致同div.bg的背景致*/
divb.topb,divb.bottomb{background-color:white}
/*div标签内类名为topb/bottomb的背景致要与body背景致分歧*/
b.t1{margin:05px}
/*标签margin值将决意溢出的几值被埋没*/
b.t2{margin:03px}
b.t3{margin:02px}
b.t4{margin:01px;height:2px;}
</style>
<divalign="center">
<divclass="bg">
<bclass="topb"><!--**此b标签所包括的b标签要举行溢出埋没**-->
<bclass="t1"></b>
<bclass="t2"></b>
<bclass="t3"></b>
<bclass="t4"></b>
</b>
<br/>
这是一个奇妙的网站!<ahref="http://www.poluoluo.com/"><fontcolor="#fff">poluoluo.Com!</font></a>
<br/>
<br/>
<bclass="bottomb">
<bclass="t4"></b>
<bclass="t3"></b>
<bclass="t2"></b>
<bclass="t1"></b>
</b>
</div>
</div>
</p>
当遇到几个选择器共享一个声明的时候,可以分组放在一起,每个选择器必须以逗号隔开。例:h1,h2,h3,h4{colorred;}选择器分组时要将每个选择器路径写全,分组结尾不能有逗号。 |
|