We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 191e3ff commit 87dee0bCopy full SHA for 87dee0b
README.md
@@ -64,17 +64,25 @@ I'm going to make some assumptions about what's around us. These are predicated
64
<meta charset="utf-8">
65
<style>
66
{% grid %}
67
+
68
+ .box {
69
+ background-color: #444;
70
+ color: #fff;
71
+ border-radius: 5px;
72
+ padding: 20px;
73
+ font-size: 150%;
74
+ }
75
</style>
76
</head>
77
<body>
78
<div {% grid_wrapper %}>
- <div {% grid_area 'header' %}>
79
+ <div class="header box">
80
Hello World!
81
</div>
- <div {% grid_area 'sidebar' %}>
82
+ <div class="sidebar box">
83
Pssst
84
- <div {% grid_area 'content' %}>
85
+ <div class="content box">
86
The main thang!
87
88
0 commit comments