Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
100 lines (81 sloc)
2.64 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Chapter 3: Placing items by grid area</title> | |
<link rel="stylesheet" href="../assets/css/common.css"> | |
<link href="https://fonts.googleapis.com/css?family=Open+Sans|Roboto+Slab" rel="stylesheet"> | |
<style> | |
.cards { | |
margin: 0; | |
padding: 0; | |
list-style: none; | |
display: grid; | |
grid-template-columns: 1fr 1fr 1fr; | |
grid-gap: 20px; | |
grid-template-areas: | |
"a a b" | |
". d d" | |
"c e e"; | |
} | |
.card1 { | |
grid-area: a; | |
} | |
.card2 { | |
grid-area: b; | |
} | |
.card3 { | |
grid-area: c; | |
} | |
.card4 { | |
grid-area: d; | |
} | |
.card5 { | |
grid-area: e; | |
} | |
.cards li { | |
background-color: #e5dbff; | |
border: 1px solid #d0bfff; | |
padding: 10px; | |
border-radius: 5px; | |
} | |
</style> | |
</head> | |
<body id="ch1"> | |
<header class="example-header"> | |
<ul class="meta"> | |
<li class="book">The New CSS Layout</li> | |
<li class="author">Rachel Andrew</li> | |
<li class="chapter">Chapter 3</li> | |
<li class="index"><a href="../">Index of examples</a></li> | |
</ul> | |
<div class="inner"> | |
<h1>Grid Items</h1> | |
</div> | |
</header> | |
<div class="example"> | |
<ul class="cards"> | |
<li class="card1"> | |
<h2>Card 1 (a)</h2> | |
<p>These cards have been laid out using grid layout. Card 1 is between column lines 1 and 3, row lines 1 and 2.</p> | |
</li> | |
<li class="card2"> | |
<h2>Card 2 (b)</h2> | |
<p>These cards have been laid out using grid layout. Card 2 is between column lines 3 and 4, row lines 1 and 2.</p> | |
</li> | |
<li class="card3"> | |
<h2>Card 3 (c)</h2> | |
<p>These cards have been laid out using grid layout. Card 3 is between column lines 1 and 2, row lines 2 and 4.</p> | |
</li> | |
<li class="card4"> | |
<h2>Card 4 (d)</h2> | |
<p>These cards have been laid out using grid layout. Card 4 is between column lines 2 and 4, row lines 2 and 3.</p> | |
</li> | |
<li class="card5"> | |
<h2>Card 5 (e)</h2> | |
<p>These cards have been laid out using grid layout. Card 5 is between column lines 2 and 4, row lines 3 and 4.</p> | |
</li> | |
</ul> | |
</div> | |
</body> | |
</html> |