Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add closing p tag #17659

Merged
merged 9 commits into from
Aug 25, 2022
12 changes: 6 additions & 6 deletions files/en-us/web/css/_colon_where/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,30 +71,30 @@ Take the following HTML:
<article>
<h2>:is()-styled links</h2>
<section class="is-styling">
<p>Here is my main content. This <a href="https://mozilla.org">contains a link</a>.
<p>Here is my main content. This <a href="https://mozilla.org">contains a link</a></p>.
heyallan marked this conversation as resolved.
Show resolved Hide resolved
</section>

<aside class="is-styling">
<p>Here is my aside content. This <a href="https://developer.mozilla.org">also contains a link</a>.
<p>Here is my aside content. This <a href="https://developer.mozilla.org">also contains a link</a></p>.
heyallan marked this conversation as resolved.
Show resolved Hide resolved
</aside>

<footer class="is-styling">
<p>This is my footer, also containing <a href="https://github.com/mdn">a link</a>.
<p>This is my footer, also containing <a href="https://github.com/mdn">a link</a></p>.
heyallan marked this conversation as resolved.
Show resolved Hide resolved
</footer>
</article>

<article>
<h2>:where()-styled links</h2>
<section class="where-styling">
<p>Here is my main content. This <a href="https://mozilla.org">contains a link</a>.
<p>Here is my main content. This <a href="https://mozilla.org">contains a link</a></p>.
heyallan marked this conversation as resolved.
Show resolved Hide resolved
</section>

<aside class="where-styling">
<p>Here is my aside content. This <a href="https://developer.mozilla.org">also contains a link</a>.
<p>Here is my aside content. This <a href="https://developer.mozilla.org">also contains a link</a></p>.
heyallan marked this conversation as resolved.
Show resolved Hide resolved
</aside>

<footer class="where-styling">
<p>This is my footer, also containing <a href="https://github.com/mdn">a link</a>.
<p>This is my footer, also containing <a href="https://github.com/mdn">a link</a></p>.
heyallan marked this conversation as resolved.
Show resolved Hide resolved
</footer>
</article>
```
Expand Down