</div>
<div>
- <h3>TODO: Grid layout</h3>
+ <h3>Grid layout</h3>
+ <style>
+ div.wrapper { display: grid;
+ grid-template-columns: repeat(3, 1fr);
+ gap: 10px;
+ grid-auto-rows: minmax(10px, auto); }
+ div.wrapper div { opacity: 50%; }
+ div.red { grid-column: 1 / 3;
+ grid-row: 1; }
+ div.blue { grid-column: 2 / 4;
+ grid-row: 1 / 3; }
+ div.yellow { grid-column: 1 / 3;
+ grid-row: 2; }
+ </style>
+
+ <div class="demo wrapper">
+ <div class="demo red"></div>
+ <div class="demo blue"></div>
+ <div class="demo yellow"></div>
+ </div>
+
+ <pre><code>div.wrapper { display: grid;
+ grid-template-columns: repeat(3, 1fr);
+ gap: 10px;
+ grid-auto-rows: minmax(10px, auto); }
+div.red { grid-column: 1 / 3;
+ grid-row: 1; }
+div.blue { grid-column: 2 / 4;
+ grid-row: 1 / 3; }
+div.yellow { grid-column: 1 / 3;
+ grid-row: 2; }</code></pre>
+
+ I don't really know grid layout yet.
</div>
<div>
- <h3>TODO: Overflow and Scrolling</h3>
+ <h3>Overflow and Scrolling</h3>
+
+ <div class="demo" style="height: 50px; border: 1px solid; overflow: hidden;">
+ Whereas recognition of the inherent dignity and of the equal and inalienable rights of all members of the human family is the foundation of freedom, justice and peace in the world,
+
+ Whereas disregard and contempt for human rights have resulted in barbarous acts which have outraged the conscience of mankind, and the advent of a world in which human beings shall enjoy freedom of speech and belief and freedom from fear and want has been proclaimed as the highest aspiration of the common people,
+ </div>
+ <pre><code>div { overflow: hidden; }</code></pre>
+
+ <div class="demo" style="height: 50px; border: 1px solid; overflow: scroll; ">
+ Whereas recognition of the inherent dignity and of the equal and inalienable rights of all members of the human family is the foundation of freedom, justice and peace in the world,
+
+ Whereas disregard and contempt for human rights have resulted in barbarous acts which have outraged the conscience of mankind, and the advent of a world in which human beings shall enjoy freedom of speech and belief and freedom from fear and want has been proclaimed as the highest aspiration of the common people,
+ </div>
+ <pre><code>div { overflow: scroll; }</code></pre>
</div>
<div>