mark
element
mark
element
This text is marked as highlighted.
<p>
<mark id="mark1">This text</mark>
is marked as highlighted.
</p>
mark
element
with aria-label
This text is marked as highlighted.
<p>
<mark aria-label="aria-label attribute">This text</mark>
is marked as highlighted.
</p>
mark
element
with aria-labelledby
This text is marked as highlighted.
Element referenced byaria-labelledby
attribute.
<p>
<mark aria-labelledby="mk-003-labelledby">This text</mark>
is marked as highlighted.
</p>
<span id="mk-003-labelledby">
Element referenced by <code>aria-labelledby</code> attribute.
</span>
mark
element
with title
attribute
This text is marked as highlighted
<p>
<mark title="title attribute">This text</mark>
is marked as highlighted
</p>
mark
element
with aria-describedby
This text is marked as highlighted.
Element referenced byaria-describedby
attribute.
<p>
<mark aria-describedby="mk-005-describedby">This text</mark>
is marked as highlighted.
</p>
<span id="mk-005-describedby">
Element referenced by <code>aria-describedby</code> attribute.
</span>
mark
element
with aria-label
& title
attributes
This text is marked as highlighted.
<p>
<mark aria-label="aria-label attribute" title="title attribute">This text</mark> is marked as highlighted.
</p>