pub struct H6;Expand description
The <h6> element - level 6 heading.
§Purpose
The <h6> element represents the lowest level (sixth-level) heading,
used for the finest grain of subsections. Rarely used in practice.
§Content Categories
- Flow Content
- Heading Content
- Palpable Content
§Permitted Content Model
- Phrasing content
§Common Use Cases
- Very deep subsection headings
- Highly detailed technical documentation
- Complex nested content structures
§Key Attributes
- Global attributes only
§Example
<h5>Specific Use Cases</h5>
<h6>Edge Case 1</h6>
<p>When dealing with legacy browsers...</p>
<h6>Edge Case 2</h6>
<p>In certain mobile scenarios...</p>§Accessibility
- Least commonly used heading level
- Consider if such deep hierarchy is necessary
- Screen readers support all heading levels
§WHATWG Specification
Trait Implementations§
Source§impl HtmlElement for H6
impl HtmlElement for H6
impl CanContain<H6> for Hgroup
impl<T: PhrasingContent> CanContain<T> for H6
impl CanContain<Text> for H6
impl FlowContent for H6
impl HeadingContent for H6
impl PalpableContent for H6
Auto Trait Implementations§
impl Freeze for H6
impl RefUnwindSafe for H6
impl Send for H6
impl Sync for H6
impl Unpin for H6
impl UnwindSafe for H6
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more