Skip to main content

Command Palette

Search for a command to run...

HTML mark tag a digital marker

Published
2 min read
HTML mark tag a digital marker
C

I'm a full-stack developer from South Africa 🇿🇦. I love writing about JavaScript, HTML and CSS.

Although Mark is also a name, it's not what this HTML attribute is used for.

Mark is used to describing a highlight of a text, to mark it, or highlight it.

How it works:

<p>This is some <mark>highlighted text</mark> using the Mark tag.</p>

And that will result in:

Mark element in HTML result

Custom styling the Mark tag

We can also add custom styling to our mark tag.

mark {
  background: purple;
  color: white;
}

This will give the following result:

Mark tag with custom CSS

Common use cases for the mark tag

One place where you often find the mark tag being used is on search result pages.

You'll find the word you were looking for highlighted.

<h3>Search results for "Pikachu"</h3>
<p><mark>Pikachu</mark> is a mouse like Pokémon.</p>
<p>The evolution of Pichu is <mark>Pikachu</mark>.</p>

Search results with mark tag

Demo

You can have a play with the following Codepen I set up to showcase the mark tag.

Browser support

The mark tag is really well supported and safe to use.

HTML mark element browser support

Thank you for reading, and let's connect!

Thank you for reading my blog. Feel free to subscribe to my email newsletter and connect on Facebook or Twitter

C

It looks super awesome; maybe I'll implement it to my Hashnode blog. 👀

3
C

Looking forward to seeing it on your blog 😎

E

Oh, this is nice. I absolutely love it!

3
C

Thanks, so glad you love it! I'm definitely going to use the mark element more often

More from this blog

D

Daily Dev Tips

887 posts

Looking to get into development? As a full-stack developer I guide you on this journey and give you bite sized tips every single day 👊