-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpinterest-style-column-layout-with-pure-CSS.html
37 lines (37 loc) · 1.38 KB
/
pinterest-style-column-layout-with-pure-CSS.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Pinterest Style Column Layout With Pure CSS</title>
<link rel="stylesheet" href="css/pinterest-style-column-layout-with-pure-CSS.css">
</head>
<body>
<div id="columns">
<figure>
<img src="http://s3-us-west-2.amazonaws.com/s.cdpn.io/4273/cinderella.jpg" alt="">
<figcaption>Cinderella wearing European fashion of the mid-1860’s</figcaption>
</figure>
<figure>
<img src="http://s3-us-west-2.amazonaws.com/s.cdpn.io/4273/mulan_2.jpg" alt="">
<figcaption>Mulan, based on the Ming Dynasty period</figcaption>
</figure>
<figure>
<img src="http://s3-us-west-2.amazonaws.com/s.cdpn.io/4273/snow-white.jpg" alt="">
<figcaption>Snow White, based on 16th century German fashion</figcaption>
</figure>
<figure>
<img src="http://s3-us-west-2.amazonaws.com/s.cdpn.io/4273/belle.jpg" alt="">
<figcaption>Belle, based on 1770’s French court fashion</figcaption>
</figure>
<figure>
<img src="http://s3-us-west-2.amazonaws.com/s.cdpn.io/4273/sleeping-beauty.jpg" alt="">
<figcaption>Sleeping Beauty, based on European fashions in 1485</figcaption>
</figure>
<figure>
<img src="http://s3-us-west-2.amazonaws.com/s.cdpn.io/4273/ariel.jpg" alt="">
<figcaption>Ariel wearing an evening gown of the 1890’s</figcaption>
</figure>
</div>
</body>
</html>