Breaking

Thursday, May 9, 2019

HTML mark Tag

Example

Highlight parts of a text:
<p>Do not forget to buy <mark>milk</mark> today.</p>
Try it Yourself »

Definition and Usage

The <mark> tag defines marked text.
Use the <mark> tag if you want to highlight parts of your text.

Browser Support

The numbers in the table specify the first browser version that fully supports the element.
Element
<mark>6.09.04.05.011.1

Differences Between HTML 4.01 and HTML5

The <mark> tag is new in HTML5.

Global Attributes

The <mark> tag also supports the Global Attributes in HTML.

Event Attributes

The <mark> tag also supports the Event Attributes in HTML.

Related Pages

HTML tutorial: HTML Text Formatting
HTML DOM reference: Mark Object

Default CSS Settings

Most browsers will display the <mark> element with the following default values:

Example

mark {
  background-color: yellow;
  color: black;
}
Try it Yourself »

No comments:

Post a Comment