mirror of https://github.com/sveltejs/svelte
19 lines
346 B
19 lines
346 B
<figure>
|
|
<img src='foo.jpg' alt='a picture of a foo'>
|
|
|
|
<figcaption>
|
|
a foo in its natural habitat
|
|
</figcaption>
|
|
|
|
<p>this should not be here</p>
|
|
</figure>
|
|
|
|
<figure>
|
|
<img src='foo.jpg' alt='a picture of a foo'>
|
|
|
|
<div class='markup-for-styling'>
|
|
<figcaption>
|
|
this element should be a child of the figure
|
|
</figcaption>
|
|
</div>
|
|
</figure> |