rebuild docs

This commit is contained in:
atomiks
2018-03-07 09:05:42 +10:00
parent 8542b1c70f
commit bb1a28353e
2 changed files with 25 additions and 25 deletions

File diff suppressed because one or more lines are too long

View File

@ -1123,25 +1123,25 @@ in any specification.</span></p>
&lt;/div&gt;
</code></pre>
<h4 data-type="CSS">CSS</h4><pre><code class="lang-css">.grid-layout {
display: grid;
grid-gap: 10px;
grid-template-columns: repeat(3, 1fr);
grid-template-areas:
"sidebar header header"
"sidebar content content"
"sidebar footer footer";
display: grid;
grid-gap: 10px;
grid-template-columns: repeat(3, 1fr);
grid-template-areas:
'sidebar header header'
'sidebar content content'
'sidebar footer footer';
}
.sidebar {
grid-area: sidebar;
grid-area: sidebar;
}
.content {
grid-area: content;
grid-area: content;
}
.header {
grid-area: header;
grid-area: header;
}
.footer {
grid-area: footer;
grid-area: footer;
}
</code></pre>
<h4>Demo</h4>