The HTML Mark Text element (<mark>
) represents text which is marked or highlighted for reference or notation purposes, due to the marked passage's relevance or importance in the enclosing context.
Content categories | Flow content, phrasing content, palpable content. |
---|---|
Permitted content | Phrasing content. |
Tag omission | None, both the starting and ending tag are mandatory. |
Permitted parents | Any element that accepts phrasing content. |
Permitted ARIA roles | Any |
DOM interface | HTMLElement |
This element only includes the global attributes.
Typical use cases for <mark>
include:
<q>
) or block quote (<blockquote>
), it generally indicates text which is of special interest but is not marked in the original source material, or material which needs special scrutiny even though the original author didn't think it was of particular importance. Think of this like using a highlighter pen in a book to mark passages that you find of interest.<mark>
indicates a portion of the document's content which is likely to be relevant to the user's current activity. This might be used, for example, to indicate the words that matched a search operation.<mark>
for syntax highlighting purposes; instead, use the <span>
element with appropriate CSS applied to it.Don't confuse <mark>
with the <strong>
element; <mark>
is used to denote content which has a degree of relevance, while <strong>
indicates spans of text of importance.
In this first example, a <mark>
element is used to mark some text within a quote which is of particular interest to the user.
<blockquote> It is a period of civil war. Rebel spaceships, striking from a hidden base, have won their first victory against the evil Galactic Empire. During the battle, <mark>Rebel spies managed to steal secret plans</mark> to the Empire’s ultimate weapon, the DEATH STAR, an armored space station with enough power to destroy an entire planet. </blockquote>
The resulting output looks like this:
This example demonstrates using <mark>
to mark search results within a passage.
<p>It is a dark time for the Rebellion. Although the Death Star has been destroyed, <mark class="match">Imperial</mark> troops have driven the Rebel forces from their hidden base and pursued them across the galaxy.</p> <p>Evading the dreaded <mark class="match">Imperial</mark> Starfleet, a group of freedom fighters led by Luke Skywalker has established a new secret base on the remote ice world of Hoth.</p>
To help distinguish the use of <mark>
for search results from other potential usage, this example applies the custom class "match"
to each match.
The results look like this:
Specification | Status | Comment |
---|---|---|
HTML Living Standard The definition of '<mark>' in that specification. | Living Standard | |
HTML5 The definition of '<mark>' in that specification. | Recommendation |
Feature | Chrome | Edge | Firefox | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
Basic support | Yes | Yes | 4 | 9 | 11 | Yes |
Feature | Android webview | Chrome for Android | Edge mobile | Firefox for Android | Opera Android | iOS Safari | Samsung Internet |
---|---|---|---|---|---|---|---|
Basic support | Yes | Yes | Yes | 4 | Yes | Yes | ? |
<a>
, <em>
, <strong>
, <cite>
, <q>
, <dfn>
, <abbr>
, <time>
, <code>
, <var>
, <samp>
, <kbd>
, <sub>
, <sup>
, <i>
, <b>
, <mark>
, <ruby>
, <rp>
, <rt>
, <bdo>
, <span>
, <br>
, <wbr>
.
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/mark