fix exception in layout examle

master
Hakim El Hattab 2020-05-11 11:26:17 +02:00
parent f84bc7882e
commit 2104dee1c1
1 changed files with 3 additions and 3 deletions

View File

@ -48,9 +48,9 @@
<p>Stacks multiple elements on top of each other, for use with fragments.</p>
<pre><code class="html" data-trim data-line-numbers>
<div class="r-stack">
<img class="fragment" width="450" height="300" src="...">
<img class="fragment" width="300" height="450" src="...">
<img class="fragment" width="400" height="400" src="...">
&gt;img class="fragment" width="450" height="300" src="..."&lt;
&lt;img class="fragment" width="300" height="450" src="..."&lt;
&lt;img class="fragment" width="400" height="400" src="..."&lt;
</div>
</code></pre>
</section>