|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
另外如果你不是javascrput的高手,你可以不必去写ID,只用class就可以。当客户端程序员写完程序,需要调整时候,你可以在利用他的ID进行控制。
破洛洛文章简介:之前就以为,Chinaz中图片瀑布结构很悦目,之前也看过他人完成的一些办法,年夜部分是用js完成的,明天试了一下,用CSS3复杂的完成了相似的结构效果.
之前就以为,Chinaz中图片瀑布结构很悦目,之前也看过他人完成的一些办法,年夜部分是用js完成的,明天试了一下,用CSS3复杂的完成了相似的结构效果
上面是我用css完成的:
<!DOCTYPEHTML>
<html>
<head>
<metahttp-equiv="Content-Type"content="text/html;charset=utf-8">
<title>CSS3瀑布结构</title>
<style>
.container{
-webkit-column-width:160px;
-moz-column-width:160px;
-o-colum-width:160px;
-webkit-column-gap:1px;
-moz-column-gap:1px;
-o-column-gap:1px;
}
div:not(.container){
-webkit-border-radius:5px;
-moz-border-radius:5px;
border-radius:5px;
background:#D9D9D9;
border::#CCC1pxsolid;
display:inline-block;
width:157px;
position:relative;
margin:2px;
}
.title{
line-height:80px;font-size:18px;color:#900;
text-align:center;
font-family:"MicrosoftYaHei";
}
</style>
</head>
<body>
<section>
<divclass="container">
<divstyle="height:80px"class="title">纯CSS3瀑布结构</div>
<divstyle="height:260px"></div>
<divstyle="height:65px"></div>
<divstyle="height:120px"></div>
<divstyle="height:145px"></div>
<divstyle="height:90px"></div>
<divstyle="height:145px"></div>
<divstyle="height:160px"></div>
<divstyle="height:65px"></div>
<divstyle="height:230px"></div>
<divstyle="height:140px"></div>
<divstyle="height:85px"></div>
<divstyle="height:20px"></div>
<divstyle="height:145px"></div>
<divstyle="height:50px"></div>
<divstyle="height:65px"></div>
<divstyle="height:230px"></div>
<divstyle="height:140px"></div>
<divstyle="height:85px"></div>
<divstyle="height:20px"></div>
<divstyle="height:145px"></div>
<divstyle="height:50px"></div>
<divstyle="height:145px"></div>
<divstyle="height:160px"></div>
<divstyle="height:240px"></div>
</div>
</section>
</body>
</html>
运转效果(FireFox,GoogleChrome下测试经由过程,其他扫瞄器未做测试~~):
</p>
当遇到几个选择器共享一个声明的时候,可以分组放在一起,每个选择器必须以逗号隔开。例:h1,h2,h3,h4{colorred;}选择器分组时要将每个选择器路径写全,分组结尾不能有逗号。 |
|