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

Proposals about outline algorithms #6259

Closed
carnoxen opened this issue Dec 30, 2020 · 2 comments
Closed

Proposals about outline algorithms #6259

carnoxen opened this issue Dec 30, 2020 · 2 comments

Comments

@carnoxen
Copy link

carnoxen commented Dec 30, 2020

  • <main> is the "main" sectioning root. It would be good for its role and visually designing main contents (for instance, using css grid).
  • <header>, <aside>, <footer>, and <nav> are additional sectioning roots. These can have sectioning content.
  • Other flow elements are nonsense to have <h#> because it is useless or already have one comparable to that (like <legend>, <caption> etc.).
  • <section>, and <article> remain sectioning content.
  • One sectioning [root | content], one child heading. (1)
  • Remove <hgroup>.
  • Optional: define role="subheading" (original idea from Steve Faulkner) and maybe reconsider <h>.

(1)

<!-- this make sense -->
<section>
    <h1></h1>
    <section>
        <h1></h1>
    </section>
    .........
</section>

<!-- this is nonsense -->
<section>
    <h1></h1>
    <h1></h1>(x)
    .........
</section>
@carnoxen
Copy link
Author

role="subheading" will be used like this:

<h1>title <span role="subheading">and subtitle</span></h1>

and it can be multiplied in one heading element like this:

<h1>title<br>
<span role="subheading">and subtitle</span><br>
<span role="subheading">and subtitle</span><br>
...</h1>

@MDivakarPal
Copy link

I want to work on this issue. Can I work please.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

No branches or pull requests

2 participants