Skip to content

Commit 8ce8c16

Browse files
committed
Remove examples from issues section
1 parent 6cba985 commit 8ce8c16

File tree

2 files changed

+18
-27
lines changed

2 files changed

+18
-27
lines changed

index.html

+10-15
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,16 @@ <h4 class="list-group-item-heading">Auto-placement form</h4>
124124
</p>
125125
<p>Example of auto-placement grid applied to a simple form. Span is not supported yet as you can see in the buttons row.</p>
126126
</li>
127+
<li class="list-group-item">
128+
<h4 class="list-group-item-heading">Auto-placement span</h4>
129+
<p>Span is not supported yet as you can see in the example.</p>
130+
<p>
131+
<a href="autoplacement-span.html" class="label label-primary">example</a>
132+
<a href="https://github.com/Igalia/css-grid-layout/blob/master/autoplacement-span.html" class="label label-success">html</a>
133+
<a href="https://github.com/Igalia/css-grid-layout/blob/master/autoplacement-span.png" class="label label-info">screenshot</a>
134+
<a href="http://www.w3.org/TR/css-grid/#grid-auto-flow-property" class="label label-warning">spec</a>
135+
</p>
136+
</li>
127137
<li class="list-group-item">
128138
<h4 class="list-group-item-heading">z-index</h4>
129139
<p>
@@ -134,11 +144,6 @@ <h4 class="list-group-item-heading">z-index</h4>
134144
</p>
135145
<p>Example with several overlaping grid items where painting order is defined by the implicit DOM order and different z-index values.</p>
136146
</li>
137-
</ul>
138-
</div>
139-
<div class="panel panel-default">
140-
<div class="panel-heading"><h3>Issues (Blink/WebKit)</h3></div>
141-
<ul class="list-group">
142147
<li class="list-group-item">
143148
<h4 class="list-group-item-heading">DOM order</h4>
144149
<p>
@@ -159,16 +164,6 @@ <h4 class="list-group-item-heading">Repaint</h4>
159164
</p>
160165
<p>Items that expands to several cells are painted more than once.</p>
161166
</li>
162-
<li class="list-group-item">
163-
<h4 class="list-group-item-heading">Auto-placement span</h4>
164-
<p>Span is not supported yet as you can see in the example.</p>
165-
<p>
166-
<a href="autoplacement-span.html" class="label label-primary">example</a>
167-
<a href="https://github.com/Igalia/css-grid-layout/blob/master/autoplacement-span.html" class="label label-success">html</a>
168-
<a href="https://github.com/Igalia/css-grid-layout/blob/master/autoplacement-span.png" class="label label-info">screenshot</a>
169-
<a href="http://www.w3.org/TR/css-grid/#grid-auto-flow-property" class="label label-warning">spec</a>
170-
</p>
171-
</li>
172167
</ul>
173168
</div>
174169
</div>

simple.html

+8-12
Original file line numberDiff line numberDiff line change
@@ -4,25 +4,21 @@
44
<link href="css/grid.css" rel="stylesheet">
55
<style>
66
.grid {
7-
-ms-grid-columns: 100px 100px;
8-
-webkit-grid-definition-columns: 100px 100px;
9-
-webkit-grid-template-columns: 100px 100px;
10-
grid-definition-columns: 100px 100px;
11-
grid-template-columns: 100px 100px;
12-
-ms-grid-rows: 50px 50px;
13-
-webkit-grid-definition-rows: 50px 50px;
14-
-webkit-grid-template-rows: 50px 50px;
15-
grid-definition-rows: 50px 50px;
16-
grid-template-rows: 50px 50px;
7+
grid-auto-flow: row;
8+
grid-auto-rows: 50px;
9+
grid-auto-columns: 100px;
1710
}
1811
</style>
1912
</head>
2013
<body>
2114
<div class="grid">
2215
<div class="row1-column1">item 1</div>
2316
<div class="row1-column2">item 2</div>
24-
<div class="row2-column1">item 3</div>
25-
<div class="row2-column2">item 4</div>
17+
<div>auto1</div>
18+
<div>auto2</div>
19+
<div>auto3</div>
20+
<div>auto4</div>
21+
<div class="row1-columnauto">row1</div>
2622
</div>
2723
</body>
2824
</html>

0 commit comments

Comments
 (0)