-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathindex.html
More file actions
731 lines (658 loc) · 38 KB
/
Copy pathindex.html
File metadata and controls
731 lines (658 loc) · 38 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
<!doctype html>
<html dir="ltr" lang="en-us">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Web Design Experiments by Jen Simmons</title>
<meta name="description" content="Experiments demonstrating CSS Grid, and what's now possible in graphic design on the web.">
<link rel="stylesheet" href="https://use.typekit.net/smi4hhm.css">
<link rel="stylesheet" href="assets/css/styles.css">
<meta name="theme-color" content="#f6f3ea">
</head>
<body>
<main>
<header><div class="header-wrapper">
<h1>The Experimental Layout Lab</h1><h1>of Jen Simmons</h1>
<div class="demo-list">
<h2>The Conference Talks</h2>
<ul>
<li>1. <a href="https://youtu.be/jreccgYLfx8">Modern Layouts: Getting Out of Our Ruts</a></li>
<li>2. <a href="https://youtu.be/aYgMExb-mlo">Revolutionize Your Page: Real Art Direction on the Web</a></li>
<li>3. <a href="https://youtu.be/t0b3uBoDkBs">Designing with Grid</a></li>
<li>4. <a href="https://youtu.be/jBwBACbRuGY">Everything You Know About Web Design Just Changed</a></li>
<li>5. <a href="https://youtu.be/AMPKmh98XLY">Designing Intrinsic Layouts</a></li>
</ul>
</div>
<p class="follow-links">Follow <a href="http://twitter.com/jensimmons">@jensimmons</a> on Twitter for more as it happens.</p>
<div class="workshop-link">
<ul>
<li><a href="https://youtube.com/layoutland">Layout Land videos</a></li>
<li><a href="http://jensimmons.com">jensimmons.com</a></li>
</ul>
</div>
</div></header>
<div class="bar index"> <! this was a nav, it can be again. Just replace the div with nav & remove the bar class-->
</div>
<section class="2019">
<h2>Demos for 2019</h2>
<ul class="demo-list">
<li><a href="2019/01-001.html">
<img src="assets/screenshots/2019/01-001.png" alt=""></a>
</li>
<li><a href="2019/01-002.html">
<img src="assets/screenshots/2019/01-002.png" alt=""></a>
</li>
<li><a href="2019/01-003.html">
<img src="assets/screenshots/2019/01-003.png" alt=""></a>
</li>
<li><a href="2019/01-004.html">
<img src="assets/screenshots/2019/01-004.png" alt=""></a>
</li>
<li><a href="2019/01-005.html">
<img src="assets/screenshots/2019/01-005.png" alt=""></a>
<p><a href="2019/01-005A.html">Variation A</a></p>
<p><a href="2019/01-005B.html">Variation B</a></p>
<p><a href="2019/01-005C.html">Variation C</a></p>
</li>
<li><a href="2019/01-006.html">
<img src="assets/screenshots/2019/01-006.png" alt=""></a>
<p><a href="https://codepen.io/jensimmons/pen/xNGRyO?editors=1100">on Codepen</a></p>
<p><a href="2019/01-006A.html">Variation A</a></p>
<p><a href="2019/01-006B.html">Variation B</a></p>
<p><a href="2019/01-006C.html">Variation C</a></p>
<p><a href="2019/01-006D.html">Variation D</a></p>
<p><a href="2019/01-006E.html">Variation E</a></p>
</li>
<li><a href="2019/01-007.html">
<img src="assets/screenshots/2019/01-007.png" alt=""></a>
<p><a href="https://codepen.io/jensimmons/pen/EzjNzy?editors=1100">on Codepen</a></p>
<p><a href="2019/01-007A.html">Variation A</a></p>
<p><a href="2019/01-007B.html">Variation B</a></p>
<p><a href="2019/01-007C.html">Variation C</a></p>
<p><a href="2019/01-007D.html">Variation D</a></p>
<p><a href="2019/01-007E.html">Variation E</a></p>
<p><a href="2019/01-007F.html">Variation F</a></p>
<p><a href="2019/01-007G.html">Variation G</a></p>
</li>
<li><a href="2019/01-008.html">
<img src="assets/screenshots/2019/01-008.png" alt=""></a>
<p><a href="https://codepen.io/jensimmons/pen/RmPKEd?editors=1100">on Codepen</a></p>
<p><a href="2019/01-008A.html">Variation A</a></p>
<p><a href="2019/01-008B.html">Variation B</a></p>
<p><a href="2019/01-008C.html">Variation C</a></p>
</li>
</ul>
</section>
<section class="intro-grid"><a name="intro-grid"></a>
<h2>Intro to CSS Grid</h2>
<ul class="demo-list">
<li style="grid-row: span 3;"><a href="2017/01-003.html">
<h4>5 Basic Examples of how CSS Grid Works</h4>
<img src="assets/screenshots/2017/01-003.jpg" alt=""></a>
</li>
<li><a href="2016/examples/spices-1.html">
<h4>Spice Layout</h4>
<img src="2016/assets/images/spices-1.jpg" alt=""></a>
</li>
<li><a href="2017/01-011.html">
<h4>Responsive Mondrian</h4>
<img src="assets/screenshots/mondrian.jpg" alt=""></a>
</li>
<li><a href="2017/03-008.html">
<h4>Jazz at Lincoln Center Poster</h4>
<img src="assets/screenshots/jazzposter.jpg" alt=""></a>
<p><a href="http://codepen.io/jensimmons/pen/PNaoqv?editors=1100">on Codepen</a></p>
<p><a href="2016/examples/grid-content-1-rotated.html">Rotate the boxes</a></p>
</li>
<li><a href="2017/01-009.html">
<h4>12 Variations of Card Layouts</h4>
<img src="assets/screenshots/2017/01-009.jpg" alt=""></a>
</li>
<li><a href="2017/03-009.html">
<h4>Example of Nesting Flexbox and Grid</h4>
<img src="assets/screenshots/2017/03-009.png" alt=""></a>
<p><a href="https://codepen.io/jensimmons/pen/LyrNqJ?editors=1100">on Codepen</a></p>
</li>
<li><a href="2017/01-005.html">
<h4>Monopoly on CSS Grid</h4>
<img src="assets/screenshots/2017/01-005.png" alt=""></a>
</li>
<li><a href="2016/examples/futurismo-1.html">
<h4>Futurismo Trentino</h4>
<img src="2016/assets/images/trentino_1932.jpg" alt=""></a>
<p><a href="https://fontsinuse.com/uses/10169/futurismo-trentino-exhibition-poster">about</a></p>
</li>
<li><a href="2016/examples/futurismo-2.html">
<h4>New Order Movement</h4>
<img src="2016/assets/images/neworder-album.jpg" alt=""></a>
<p><a href="https://fontsinuse.com/uses/10168/movement-by-new-order">about</a></p>
</li>
</ul>
</section>
<section class="flexibility">
<h2>Study of Flexibility</h2>
<ul class="demo-list">
<li><a href="2017/01-016.html">
<img src="assets/screenshots/2017/01-016.png" alt=""></a>
</li>
<li><a href="2017/01-007.html">
<h4>Die Neue Typographie</h4>
<img src="assets/screenshots/2017/01-007.png" alt=""></a>
</li>
<li><a href="2017/02-004.html">
<img src="assets/screenshots/2017/02-004.gif" alt=""></a>
<p>// requires display:contents</p>
<p>// <a href="/2017/media/02-004/der Film.jpg">original</a>
</li>
<li><a href="2018/03-004.html">
<img src="assets/screenshots/2018/03-004.png" alt=""></a>
<p>// requires display:contents & Grid</p>
<p><a href="2018/media/03-004/StaatlichesBauhaus.jpg">original</a>
<p><a href="https://codepen.io/jensimmons/pen/pOwZrw?editors=1100">on CodePen</a></p>
<p>
</li>
</ul>
</section>
<section class="overlap">
<h2>Study of Overlap</h2>
<ul class="demo-list">
<li><a href="2017/02-012.html">
<img src="assets/screenshots/2017/02-012.jpg" alt=""></a>
</li>
<li><a href="2017/01-002.html">
<img src="assets/screenshots/overlappingcircles.gif" alt=""></a>
</li>
<li><a href="2017/01-018.html">
<img src="assets/screenshots/2017/01-018.png" alt=""></a>
</li>
<li><a href="2017/02-001.html">
<img src="assets/screenshots/2017/02-001.gif" alt=""></a>
<p>// <a href="http://www.archiviograficaitaliana.com/project/114/nonatriennale">original</a>
</li>
</ul>
</section>
<section class="viewport"><a name="viewport"></a>
<h2>Study of Viewport</h2>
<ul class="demo-list">
<li><a href="2017/01-010.html">
<h4>Study of the Viewport</h4>
<img src="assets/screenshots/2017/01-010.png" alt=""></a>
</li>
<li><a href="2017/01-006.html">
<h4>Four cards that always fit into viewport</h4>
<img src="assets/screenshots/2017/01-006.jpg" alt=""></a>
</li>
<li><a href="2017/01-008.html">
<h4>Michael Pollan homepage redo</h4>
<img src="assets/screenshots/2017/01-008.png" alt=""></a>
</li>
<li><a href="2016/examples/grace-hopper-page.html">
<h4>Grace Hopper as a magazine cover</h4>
<img src="assets/screenshots/GHcoverpage.jpg" alt=""></a>
<p><a href="http://codepen.io/jensimmons/pen/wGXwNb?editors=1100">on Codepen</a></p>
</li>
<li><a href="2016/examples/coversheet-1.html">
<h4>Typical Header with title & background, the height of the space needed</h4>
<img src="2016/assets/images/coversheet1.jpg" alt=""></a>
<p><a href="http://codepen.io/jensimmons/pen/aNKory?editors=1100">on CodePen</a></p>
</li>
<li><a href="2016/examples/coversheet-2.html">
<h4>Cover Sheet Header, taking up 100% of viewport</h4>
<img src="2016/assets/images/coversheet2.jpg" alt=""></a>
<p><a href="http://codepen.io/jensimmons/pen/RaJbme?editors=1100">on CodePen</a></p>
</li>
<li><a href="2016/examples/coversheet-3.html">
<h4>Cover Sheet Header, with tweaks for old IE</h4>
<img src="2016/assets/images/coversheet3.jpg" alt=""></a>
<p><a href="http://codepen.io/jensimmons/pen/vGrBqz?editors=1100">on CodePen</a></p>
</li>
</ul>
</section>
<section class="whitespace"><a name="whitespace"></a>
<h2>Study of Whitespace</h2>
<ul class="demo-list">
<li><a href="2017/01-021.html">
<h4>A Vignelli Layout</h4>
<img src="assets/screenshots/2017/01-021.png" alt=""></a>
</li>
</ul>
</section>
<section class="vertical">
<h2>Study of Verticality</h2>
<ul class="demo-list">
<li><a href="2017/01-020.html">
<img src="assets/screenshots/2017/01-020.png" alt=""></a>
</li>
</ul>
</section>
<section class="density"><a name="density"></a>
<h2>Study of Density</h2>
<ul class="demo-list">
<li><a href="2017/01-001.html">
<h4>Circle Gallery</h4>
<img src="assets/screenshots/circlegallery.jpg" alt=""></a>
</li>
</ul>
</section>
<section class="2018-talk"><a name="2018-talk"></a>
<h2>Examples for 2018 Talk on Intrinsic Web Design</h2>
<ul class="demo-list">
<li><a href="2018/01-001.html">
<h4>Example 1, HTML Flow only</h4>
<img src="assets/screenshots/2018/01-001.png" alt=""></a>
<p><a href="https://codepen.io/jensimmons/pen/aYYEez?editors=1100">on Codepen</a></p>
</li>
<li><a href="2018/01-002.html">
<h4>Example 2, Fluid Web Design</h4>
<img src="assets/screenshots/2018/01-002.png" alt=""></a>
<p><a href="https://codepen.io/jensimmons/pen/MVVLjM?editors=1100">on Codepen</a></p>
</li>
<li><a href="2018/01-003.html">
<h4>Example 3, Fluid Web Design</h4>
<img src="assets/screenshots/2018/01-003.png" alt=""></a>
<p><a href="https://codepen.io/jensimmons/pen/vRRbJe?editors=1100">on Codepen</a></p>
</li>
<li><a href="2018/01-004.html">
<h4>Example 4, Fixed Web Design</h4>
<img src="assets/screenshots/2018/01-004.png" alt=""></a>
<p><a href="https://codepen.io/jensimmons/pen/GxxeBV?editors=1100">on Codepen</a></p>
</li>
<li><a href="2018/01-005.html">
<h4>Example 5, Responsive Web Design</h4>
<img src="assets/screenshots/2018/01-005.png" alt=""></a>
<p><a href="https://codepen.io/jensimmons/pen/wmmNPY?editors=1100">on Codepen</a></p>
</li>
<li><a href="2018/01-006.html">
<h4>Example 6, Intrinsic Web Design</h4>
<img src="assets/screenshots/2018/01-006.png" alt=""></a>
<p><a href="https://codepen.io/jensimmons/pen/RMMdXb?editors=1100">on Codepen</a></p>
</li>
<li><a href="2018/01-007.html">
<h4>Example of Image Options</h4>
<img src="assets/screenshots/2018/01-007.jpg" alt=""></a>
<p><a href="https://codepen.io/jensimmons/pen/bvMVeX?editors=1100">on Codepen</a></p>
</li>
<li><a href="2018/01-008.html">
<h4>Stages of Squish</h4>
<img src="assets/screenshots/2018/01-008.jpg" alt=""></a>
<p><a href="https://codepen.io/jensimmons/pen/dmeMpO?editors=1100">on Codepen</a></p>
</li>
<li><a href="2018/01-009.html">
<h4>Nesting Contexts</h4>
<img src="assets/screenshots/2018/01-009.jpg" alt=""></a>
<p><a href="https://codepen.io/jensimmons/pen/KoRWMv?editors=1100">on Codepen</a></p>
</li>
<li><a href="2018/01-010.html">
<h4>Teaser card</h4>
<img src="assets/screenshots/2018/01-010.jpg" alt=""></a>
<p><a href="https://codepen.io/jensimmons/pen/gezmMa?editors=1100">on Codepen</a></p>
</li>
<li><a href="2018/01-011.html">
<h4>Multiple Teaser Card nested in a Grid layout</h4>
<img src="assets/screenshots/2018/01-011.jpg" alt=""></a>
<p><a href="https://codepen.io/jensimmons/pen/Ldmymx?editors=1100">on Codepen</a></p>
</li>
</ul>
</section>
<section class="return"><a name="return"></a>
<h2>Return of the 1990s</h2>
<ul class="demo-list">
<li><a href="2017/01-004.html">
<img src="assets/screenshots/2017/01-004.jpg" alt=""></a>
</li>
<li><a href="2017/02-015.html">
<h4>Space Jam</h4>
<img src="assets/screenshots/gridjam.jpg" alt=""></a>
<p>// requires display:contents</p>
</li>
</ul>
</section>
<section id="shapes"><a name="shapes"></a>
<h2>CSS Shapes</h2>
<ul class="demo-list">
<li><a href="2016/examples/shapes-1.html">
<h4>Tomato: shape-outside: circle</h4>
<img src="2016/assets/images/shape1.jpg" alt="screenshot of the Tomato shape demo"></a>
<p><a href="http://codepen.io/jensimmons/pen/dMdOrL?editors=1100">on CodePen</a></p>
</li>
<li><a href="2016/examples/shapes-2.html">
<h4>Egg: shape-outside: ellipse</h4>
<img src="2016/assets/images/shape2.jpg" alt="screenshot of the Egg shape demo"></a>
<p><a href="http://codepen.io/jensimmons/pen/yOvgyp/?editors=1100">on CodePen</a></p>
</li>
<li><a href="2016/examples/shapes-3.html">
<h4>Grapes: shape-outside: polygon</h4>
<img src="2016/assets/images/shape3.jpg" alt="screenshot of the Grapes shape demo"></a>
<p><a href="http://codepen.io/jensimmons/pen/reJjVr?editors=1100">on CodePen</a></p>
</li>
<li><a href="2016/examples/shapes-4.html">
<h4>Apples: shape-outside: url(mask.png)</h4>
<img src="2016/assets/images/shape4.jpg" alt="screenshot of the Apples shape demo"></a>
<p><a href="http://codepen.io/jensimmons/pen/zBxVJg/?editors=1100">on CodePen</a></p>
</li>
<li><a href="2016/examples/shapes-5.html">
<h4>Blackberry: shape-outside: attr(src url)</h4>
<img src="2016/assets/images/shape5.jpg" alt="screenshot of the Blackberry shape demo"></a>
<p><a href="http://codepen.io/jensimmons/pen/bedqqQ?editors=1100">on CodePen</a></p>
</li>
<li><a href="2016/examples/shapes-6.html">
<h4>Oranges: shape-outside combined with multicolumn</h4>
<img src="2016/assets/images/shape6.jpg" alt="screenshot of the Orange shape demo"></a></p>
</li>
<li><a href="2016/examples/shapes-7.html">
<h4>Plums: images floating around an image</h4>
<img src="2016/assets/images/shape7.jpg" alt="screenshot of the Plums shape demo"></a></p>
</li>
</ul>
</section>
<section id="clippath"><a name="clippath"></a>
<h2>Clip Path</h2>
<ul class="demo-list">
<li><a href="2016/examples/clip-path.html">
<h4>Simple Image Cropped by Clip Path</h4>
<img src="2016/assets/images/simpleclippath.jpg" alt="screenshot of the Simple Clip Path demo"> </a>
<p><a href="http://codepen.io/jensimmons/pen/jqZyKx?editors=1100">on CodePen</a></p>
</li>
</ul>
</section>
<section id="objectfit"><a name="objectfit"></a>
<h2>Object Fit</h2>
<p class="note">Object-fit has <a href="http://caniuse.com/#feat=object-fit">terrific support</a>. Object-position isn't supported in Safari 9, but will be in Safari 10. Mostly, we <a href="https://wpdev.uservoice.com/forums/257854-microsoft-edge-developer/suggestions/6263790-object-fit-and-object-position">need the Edge team to add both.</a></p>
<ul class="demo-list">
<li><a href="2016/examples/object-fit-photos.html"><img src="2016/assets/images/image-comparison.jpg" alt="a screenshot of the image comparision demo">How photos work: fixed v fluid v. object-fit</a><p><a href="http://codepen.io/jensimmons/pen/jqKNxg?editors=1100">on CodePen</a></p></li>
<li><a href="2016/examples/object-fit.html"><img src="2016/assets/images/image-demo-of-object-fit.jpg" alt="screensot of object-fit demo">Object Fit — comparing values</a><p><a href="http://codepen.io/jensimmons/pen/ZWRzjQ?editors=1100">on CodePen</a></p></li>
<li><a href="2016/examples/grace-hopper-page.html"><img src="2016/assets/images/gh.jpg" alt="">Grace Hopper Cover Page demo</a><p><a href="http://codepen.io/jensimmons/pen/wGXwNb?editors=1100">on CodePen</a></p></li>
</ul>
</section>
<section id="multicolumn"><a name="multicolumn"></a>
<h2>Multicolumn</h2>
<p class="note">Multiple Column Layout works has <a href="http://caniuse.com/#feat=multicolumn">worked in browsers forever</a> — including IE10+. There are some remaining bugs however, and we need <code>break-before, break-after, break-inside</code> to accomplish many design ideas. With some care, though, we can use multicolumn today.</p>
<ul class="demo-list">
<li><a href="2016/examples/multicolumn-1.html"><img src="2016/assets/images/multicolumn-1.jpg" alt=""> Multicolumn Basics Comparision</a></li>
<li><a href="2016/examples/multicolumn-2.html"><img src="2016/assets/images/multicolumn-2.jpg" alt=""> Multicolumn Text Example</a></li>
<li><a href="2016/examples/multicolumn-3.html"><img src="2016/assets/images/multicolumn-3.jpg" alt=""> Multicolumn Card Layout</a></li>
<li><a href="2016/examples/multicolumn-3-bug-demo.html"><img src="2016/assets/images/multicolumn-3.jpg" alt=""> Multicolumn Bug Demo</a></li>
<li><a href="2016/examples/image-gallery-multicolumn.html"><img src="2016/assets/images/multicolumn-4.jpg" alt=""> Image Gallery in Multicolumn Layout</a> <p><a href="http://codepen.io/jensimmons/pen/BKPGov?editors=1100">on CodePen</a></p></li>
</ul>
<footer>
<div>
<h4>Multicolumn Bug tickets</h4>
<ul>
<li><a href="https://bugs.webkit.org/show_bug.cgi?id=14137">Drop shadows don't stay with content box in Webkit</a></li>
</ul>
</div>
</section>
<section id="initialletter"><a name="initialletter"></a>
<h2>Study of Initial Letter</h2>
<ul class="demo-list">
<li><a href="2017/03-002.html">
<img src="assets/screenshots/2017/03-002.png" alt=""></a>
<p><a href="https://codepen.io/jensimmons/pen/GEXzdV?editors=1100#0">on CodePen</a></p>
</li>
<li><a href="2016/examples/initial-letter.html">
<h4>A Drop Cap</h4>
<img src="2016/assets/images/initial-letter-1.jpg" alt="screenshot of a almost-working dropped cap"></a>
<p><a href="http://codepen.io/jensimmons/pen/EKQWyV?editors=1100">on CodePen</a></p>
</li>
<li><a href="2016/examples/initial-letter-2.html">
<h4>A Raised Cap</h4>
<img src="2016/assets/images/initial-letter-2.jpg" alt="screenshot of a working dropped cap"></a>
<p><a href="http://codepen.io/jensimmons/pen/WwMpxY?editors=1100">on CodePen</a></p>
</li>
<li><a href="2016/examples/initial-letter-5.html">
<h4>Block Cap</h4>
<img src="2016/assets/images/initial-letter-5.jpg" alt="screenshot of a working block cap"> </a>
<p><a href="http://codepen.io/jensimmons/pen/mEWPze?editors=1100">on CodePen</a></p>
</li>
</ul>
</section>
<section id="writing-modes"><a name="writing-modes"></a>
<h2>Study of Writing Modes</h2>
<ul class="demo-list">
<li><a href="2017/03-004.html">
<img src="assets/screenshots/2017/03-004.png" alt=""></a>
</li>
<li><a href="2017/03-005.html">
<img src="2016/assets/images/writingmode-headline.png" alt=""></a>
<p>// <a href="http://codepen.io/jensimmons/pen/KNJgmP?editors=1100">on CodePen</a></p>
</li>
<li><a href="2017/03-006.html">
<img src="2016/assets/images/writingmode-article.png" alt=""></a>
<p>// <a href="http://codepen.io/jensimmons/pen/ZBmwLo?editors=1100">on CodePen</a></p>
</li>
<li><a href="2017/03-003.html">
<img src="assets/screenshots/2017/03-003.png" alt=""></a>
<p>// <a href="https://codepen.io/jensimmons/pen/NgOpYE?editors=1100">on CodePen</a></p>
</li>
<li><a href="2016/workshop/writingmode-1A.html">
<img src="2016/assets/images/writingmode-1a.png" alt=""></a>
</li>
<li><a href="2016/workshop/writingmode-3A.html">
<img src="2016/assets/images/writingmode-3a.png" alt=""></a>
</li>
<li><a href="2016/workshop/writingmode-2C.html">
<img src="2016/assets/images/writingmode-2c.png" alt=""></a>
</li>
<li><a href="2016/workshop/writingmode-4A.html">
<img src="2016/assets/images/writingmode-4a.png" alt=""></a>
</li>
<li><a href="2016/workshop/writingmode-4B.html">
<img src="2016/assets/images/writingmode-4b.png" alt=""></a>
</li>
<li><a href="2016/workshop/writingmode-4C.html">
<img src="2016/assets/images/writingmode-4c.png" alt=""></a>
</li>
<li><a href="2016/workshop/writingmode-4D.html">
<img src="2016/assets/images/writingmode-4d.png" alt=""></a>
</li>
</ul>
</section>
<section class="flexbox"><a name="flexbox"></a>
<h2>Study of Flexbox</h2>
<ul class="demo-list">
<li><a href="2017/02-007.html">
<img src="assets/screenshots/2017/02-007.png" alt=""></a>
</li>
<li><a href="2017/02-008.html">
<img src="assets/screenshots/2017/02-008.jpg" alt=""></a>
</li>
<li><a href="2017/02-010.html">
<img src="assets/screenshots/2017/02-010.png" alt=""></a>
</li>
</ul>
</section>
<section class="transforms">
<h2>Other Experiments</h2>
<ul class="demo-list">
<li><a href="2017/01-015.html">
<img src="assets/screenshots/2017/01-015.gif" alt=""></a>
</li>
<li><a href="2017/02-002.html">
<h4>Test of hr and br</h4>
<img src="assets/screenshots/2017/02-002.png" alt=""></a>
</li>
</ul>
</section>
<section id="rotation"><a name="rotation"></a>
<h2>Rotation</h2>
<p class="note">Rotation is a <a href="http://caniuse.com/#feat=transforms2d">2D Transformation, which doesn't work in IE8 & earlier, or in Opera Mini.</a> Oh well. Things can be straight in those browsers and rotated everyplace else.</p>
<ul class="demo-list">
<li><a href="2016/examples/rotation1.html"><img src="2016/assets/images/rotation1.jpg" alt=""> Rotation 1</a></li>
<li><a href="2016/examples/rotation2.html"><img src="2016/assets/images/rotation2.jpg" alt=""> Rotation 2</a></li>
<li><a href="2016/examples/rotation3.html"><img src="2016/assets/images/rotation3.jpg" alt=""> Rotation 3</a></li>
<li><a href="2016/examples/rotation4.html"><img src="2016/assets/images/rotation4.jpg" alt=""> Rotation 4</a></li>
</ul>
</section>
<section id="hexagon"><a name="hexagon"></a>
<h2>Hexagon Layouts</h2>
<p class="note">I'm trying to figure out how to best do this layout. I want hexagons to nest, to be fluid, and I want them to automatically align themselves into different number of columns based on how much space there is. Sometimes 1 column, 2 col, 3col, 4col, 5col, etc. Hexagon 4 does this — alters the number of columns based on how much space there is. But I'm not sure how to get the hexagons to nuzzle up next to each other in Hexagon 4. I'm thinking named lines might help, which is why I used them in Hexagon 5, but that would only help if we could tell auto-placement to figure out what the next named line is in the available space. Something like "Hey go to the next line with this name" instead of "go to named line number 2". Of course, this could be done with a lot of long-hand specifying and a bunch of media queries. Basically Hexagon 2 or 3 with lots more code for multiple breakpoints. Or maybe there's a completely new way to go at this. Hmmmm.</p>
<p class="note">The CSS Grid versions require a browser that supports CSS Grid. You also need a browser that supports Clip Path. If you use <a href="https://nightly.mozilla.org/">Firefox Nightly</a>, flip the flag to turn on clip-path.</p>
<ul class="demo-list">
<li><a href="2016/examples/hexagon-1.html"><img src="2016/assets/images/hexagon1.jpg" alt=""> Hexagon 1: Clip-path + Floats + Negative Margins</a><p><a href="https://codepen.io/jensimmons/pen/ZbPrQJ?editors=1100">on CodePen</a></p></li>
<li><a href="2016/examples/hexagon-2.html"><img src="2016/assets/images/hexagon2.jpg" alt=""> Hexagon 2: Clip-path + Grid, fully-resizes</a><p><a href="https://codepen.io/jensimmons/pen/QNRMxm?editors=1100">on CodePen</a></p></li>
<li><a href="2016/examples/hexagon-3.html"><img src="2016/assets/images/hexagon3.jpg" alt=""> Hexagon 3: Clip-path + Grid, fully-resizes. Similar to #2, but using negative margins & nth-child for more efficient code.</a><p><a href="https://codepen.io/jensimmons/pen/BKemEK?editors=1100">on CodePen</a></p></li>
<li><a href="2016/examples/hexagon-4.html"><img src="2016/assets/images/hexagon4.jpg" alt=""> Hexagon 4: Clip-path + Grid. Adjusting by Auto Placement.</a><p><a href="https://codepen.io/jensimmons/pen/KzLZzy?editors=1100">on CodePen</a></p></li>
<li><a href="2016/examples/hexagon-5.html"><img src="2016/assets/images/hexagon5.jpg" alt=""> Hexagon 5: Clip-path + Grid. Using named lines. Fixed-width.</a><p><a href="https://codepen.io/jensimmons/pen/vGwpOY?editors=1100">on CodePen</a></p></li>
<li><a href="2016/examples/hexagon-6.html"><img src="2016/assets/images/tba.gif" alt=""> Hexagon 6: ???</a><p><a href="https://codepen.io/jensimmons/pen/KzLZNZ?editors=1100">on CodePen</a></p></li>
</ul>
</section>
<section id="imagegallery"><a name="imagegallery"></a>
<h2>Image Gallery Study</h2>
<p class="note">The CSS Grid examples require a browser that supports CSS Grid. It works best in <a href="https://nightly.mozilla.org/">Firefox Nightly</a>.</p>
<ul class="demo-list">
<li><a href="2016/examples/image-gallery-no-layout.html"><img src="2016/assets/images/gallery1.jpg" alt=""> Image Gallery, with no image layout</a> <p><a href="http://codepen.io/jensimmons/pen/WwyLEE?editors=1100">on CodePen</a></p></li>
<li><a href="2016/examples/image-gallery-floats-1.html"><img src="2016/assets/images/gallery2.jpg" alt=""> Image Gallery Old School Floats, Broken</a> <p><a href="http://codepen.io/jensimmons/pen/JXZzdr?editors=1100">on CodePen</a></p></li>
<li><a href="2016/examples/image-gallery-floats-2.html"><img src="2016/assets/images/gallery3.jpg" alt=""> Image Gallery Old School Floats, Squares</a> <p><a href="http://codepen.io/jensimmons/pen/KzeEaV?editors=1100">on CodePen</a></p></li>
<li><a href="2016/examples/image-gallery-flexbox-1.html"><img src="2016/assets/images/gallery4.jpg" alt=""> Image Gallery in Flexbox Rows (only works in Firefox, img {width: 100%})</a> <p><a href="http://codepen.io/jensimmons/pen/YqvgZO?editors=1100">on CodePen</a></p></li>
<li><a href="2016/examples/image-gallery-flexbox-2.html"><img src="2016/assets/images/gallery5.jpg" alt=""> Image Gallery in Flexbox Columns</a> <p><a href="http://codepen.io/jensimmons/pen/XdBxav?editors=1100">on CodePen</a></p></li>
<li><a href="2016/examples/image-gallery-multicolumn.html"><img src="2016/assets/images/gallery8.jpg" alt=""> Image Gallery in Multicolumn Layout</a> <p><a href="http://codepen.io/jensimmons/pen/BKPGov?editors=1100">on CodePen</a></p></li>
<li><a href="2016/examples/image-gallery-grid-1.html"><img src="2016/assets/images/gallery6.jpg" alt=""> Image Gallery in CSS Grid: 7-column Symmetrical</a> <p><a href="http://codepen.io/jensimmons/pen/grjQwB?editors=1100">on CodePen</a></p></li>
</ul>
</section>
<section class="practicality">
<h2>Study of Practicality</h2>
<ul class="demo-list">
<li><a href="2017/03-010.html">
<img src="assets/screenshots/2017/03-010.png" alt=""></a>
<p>// <a href="https://codepen.io/jensimmons/pen/zKgevR?editors=1100">on CodePen</a></p>
</li>
</ul>
</section>
<section>
<h1>CSS Grid Layout examples</h1>
<h3>Set 1</h3>
<ul>
<li><a href="grid-1A.html">Grid 1A</a></li>
<li><a href="grid-1B.html">Grid 1B</a></li>
<li><a href="grid-1C.html">Grid 1C</a></li>
<li><a href="grid-1D.html">Grid 1D</a></li>
<li><a href="grid-1E.html">Grid 1E</a></li>
<li><a href="grid-1F.html">Grid 1F</a></li>
<li><a href="grid-1G.html">Grid 1G</a></li>
<li><a href="grid-1H.html">Grid 1H</a></li>
<li><a href="grid-1I.html">Grid 1I</a></li>
<li><a href="grid-1J.html">Grid 1J</a></li>
</ul>
<h3>Set 2</h3>
<ul>
<li><a href="grid-2A.html">Grid 2A</a></li>
<li><a href="grid-2B.html">Grid 2B</a></li>
<li><a href="grid-2C.html">Grid 2C</a></li>
</ul>
<h3>Exercises 1–7</h3>
<ul>
<li><a href="http://codepen.io/jensimmons/pen/ryGwXO">Exercise 1 — Make a simple Grid</a></li>
<li><a href="http://codepen.io/jensimmons/pen/EWRqLe">Exercise 2 — Make a ratio-based Grid</a></li>
<li><a href="http://codepen.io/jensimmons/pen/peKmzL">Exercise 3 — Make a Responsive Grid</a></li>
<li><a href="http://codepen.io/jensimmons/pen/jBKobz">Exercise 4 — Explicitly Place Items</a></li>
<li><a href="http://codepen.io/jensimmons/pen/BWVeZm">Exercise 5 — Make certain Grid Items bigger</a></li>
<li><a href="http://codepen.io/jensimmons/pen/PpaMOq">Exercise 6 — Auto Flow Spare vs Dense</a></li>
<li><a href="http://codepen.io/jensimmons/pen/qrKejQ">Exercise 7 — Put It All Together</a></li>
</ul>
<h3>Exercises 8-11</h3>
<ul>
<li><a href="http://codepen.io/jensimmons/pen/xqJKdK">Exercise 8 — Make a simple Grid</a></li>
<li><a href="http://codepen.io/jensimmons/pen/QpBLgr">Exercise 9 — Place items on that Grid</a></li>
<li><a href="http://codepen.io/jensimmons/pen/XMBraw">Exercise 10 — Make the items overlap </a></li>
<li><a href="http://codepen.io/jensimmons/pen/YZjKep">Exercise 11 — Put It All Together</a></li>
</ul>
</section>
<section>
<h1>Writing Mode examples</h1>
<h3>A Study of Three Properties</h3>
<ul>
<li><a href="writingmode-1A.html">Writing Mode 1A</a></li>
</ul>
<h3>Vertical vs Sideways</h3>
<ul>
<li><a href="writingmode-2A.html">Writing Mode 2A</a></li>
<li><a href="writingmode-2B.html">Writing Mode 2B</a></li>
<li><a href="writingmode-2C.html">Writing Mode 2C</a></li>
<li><a href="writingmode-2D.html">Writing Mode 2D</a></li>
<li><a href="writingmode-2E.html">Writing Mode 2E</a></li>
</ul>
<h3>Logo Layout</h3>
<ul>
<li><a href="writingmode-3A.html">Writing Mode 3A</a></li>
</ul>
<h3>Headline Options</h3>
<ul>
<li><a href="writingmode-4A.html">Writing Mode 4A</a></li>
<li><a href="writingmode-4B.html">Writing Mode 4B</a></li>
<li><a href="writingmode-4C.html">Writing Mode 4C</a></li>
<li><a href="writingmode-4D.html">Writing Mode 4D</a></li>
</ul>
</section>
<section>
<h2>Flow-root Demo</h2>
<ul>
<li><a href="https://codepen.io/jensimmons/pen/oWybyZ?editors=1100">Demo of Clearfix & flow-root</a></li>
<li><a href="https://codepen.io/jensimmons/pen/aWKNZw?editors=1100">Same Demo using Flexbox</a></li>
<li><a href="https://codepen.io/jensimmons/pen/QvxNGW?editors=1100">Same Demo using Grid</a></li>
</ul>
</section>
<section id="regions1"><a name="regions1"></a>
<h2>A Study of Columns and the Need for Regions, part 1</h2>
<p class="note">These demos (D–J) only work in <a href="https://developer.apple.com/safari/technology-preview/">Safari Technical Preview</a>.</p>
<ul class="demo-list">
<li><a href="2016/examples/regions-1a.html">
<h4>A: Fluid text, a la 1994</h4>
<img src="2016/assets/images/region1A.jpg" alt=""></a>
</li>
<li><a href="2016/examples/regions-1b.html">
<h4>B: Responsive text, a la 2011</h4>
<img src="2016/assets/images/region1B.jpg" alt=""></a>
</li>
<li><a href="2016/examples/regions-1c.html">
<h4>C: Multicolumn</h4>
<img src="2016/assets/images/region1C.jpg" alt=""> </a>
</li>
<li><a href="2016/examples/regions-1d.html">
<h4>D: Regions + Multicolumn — almost, but not</h4>
<img src="2016/assets/images/region1D.jpg" alt=""></a>
</li>
<li><a href="2016/examples/regions-1e.html">
<h4>E: Regions + Multicolumn — what actually happens</h4>
<img src="2016/assets/images/region1E.jpg" alt=""></a>
</li>
<li><a href="2016/examples/regions-1f.html">
<h4>F: Since Multicolumn fails, let's do columns with Flexbox + Regions</h4>
<img src="2016/assets/images/region1F.jpg" alt=""></a></li>
<li><a href="2016/examples/regions-1g.html">
<h4>G: Let's Switch to Real Content, in Flexbox + Regions</h4>
<img src="2016/assets/images/region1G.jpg" alt=""></a>
</li>
<li><a href="2016/examples/regions-1h.html">
<h4>H: Grid + Regions, simple layout of real content</h4>
<img src="2016/assets/images/region1H.jpg" alt=""></a>
</li>
<li><a href="2016/examples/regions-1i.html">
<h4>I: Grid + Regions, with a Cover Sheet header</h4>
<img src="2016/assets/images/region1I.jpg" alt=""></a>
</li>
<li><a href="2016/examples/regions-1j.html">
<h4>J: Adding Scroll Snap to see what that feels like</h4>
<img src="2016/assets/images/region1J.jpg" alt=""></a>
</li>
</ul>
</section>
<section id="flexvgrid"><a name="flexvgrid"></a>
<h2>A Study of Flexbox vs Grid (In Progress)</h2>
<p class="note">The CSS Grid demos require a browser that supports CSS Grid.</p>
<ul class="demo-list">
<li><a href="2016/examples/study-1.html"><img src="2016/assets/images/flexboxvgrid1.jpg" alt=""> Study 1: A Grid of Boxes, 4 Ways</a></li>
<li><a href="2016/examples/study-2.html"><img src="2016/assets/images/flexboxvgrid2.jpg" alt=""> Study 2: That Same Grid of Boxes in Just Grid</a></li>
</ul>
</section>
<section>
<h2>Under Construction Ideas</h2>
<ul class="demo-list">
<li><a href="2016/examples/scroll-snap-points.html"><img src="2016/assets/images/tba.gif" alt=""> Simple Vertical Scroll Snap</a></li>
<li><a href="2016/examples/article-on-grid-1.html"><img src="2016/assets/images/tba.gif" alt=""> TBA: Article Experiment 1</a></li>
<li><a href="2016/examples/album-cover.html"><img src="2016/assets/images/tba.gif" alt=""> Combining Shapes + Clip-path</a></li>
</ul>
</section>
</main>
</body>
<script type="text/javascript">var _gauges = _gauges || []; (function() {var t = document.createElement('script'); t.type = 'text/javascript'; t.async = true; t.id = 'gauges-tracker'; t.setAttribute('data-site-id', '59133cdabad3a70724018023'); t.setAttribute('data-track-path', 'https://track.gaug.es/track.gif'); t.src = 'https://d36ee2fcip1434.cloudfront.net/track.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(t, s);})();</script>
</html>