This article introduces the sample code of css3 multi-column and waterfall flow effects
css3 content block, multi-column effect (similar to newspaper section layout):
.p02{ /*count:内容分为几列,gap:内容与分割线的距离,rule:分割线样式*/ column-count:4; column-gap:30px; column-rule:5px outset #ff0000; -webkit-column-count: 4; -webkit-column-gap: 30px; -webkit-column-rule: 5px outset #ff0000; }
css3 realizes picture waterfall flow typesetting:
.container { column-width: 350px; -webkit-column-width: 350px; column-gap: 5px; -webkit-column-gap: 5px; }img { width: 400px; }.container p { width: 350px; margin: 5px; }p { text-align: center; }
The waterfall flow effect html code is as follows:
<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> <link rel="stylesheet" type="text/css" href="pubuliu.css" /> </head> <body> <p class="container"> <p><img src="../../image/5.jpg" /></p> <p><img src="../../image/2.jpg" /><p>文字描述</p></p> <p><img src="../../image/5.jpg" /></p> <p><img src="../../image/2.jpg" /></p> <p><img src="../../image/5.jpg" /><p>文字描述</p></p> <p><img src="../../image/3.jpg" /></p> <p><img src="../../image/5.jpg" /></p> <p><img src="../../image/5.jpg" /></p> <p><img src="../../image/3.jpg" /></p> <p><img src="../../image/5.jpg" /></p> <p><img src="../../image/5.jpg" /><p>文字描述</p></p> <p><img src="../../image/5.jpg" /></p> <p><img src="../../image/5.jpg" /></p> <p><img src="../../image/5.jpg" /></p> <p><img src="../../image/5.jpg" /><p>文字描述</p></p> <p><img src="../../image/5.jpg" /></p> <p><img src="../../image/5.jpg" /></p> </p> </body></html>
The above is the detailed content of css3 multi-column and waterfall effect sample code. For more information, please follow other related articles on the PHP Chinese website!