Open In App

CSS text-emphasis Property

In this article, we will discuss text-emphasis property in CSS. It is a short-hand property for text-emphasis-style and text-emphasis-color. It applies emphasis properties to characters (except spaces and control characters).

Syntax:



text-emphasis: text-emphasis-style text-emphasis-color;

Properties:

Example:






<!DOCTYPE html>
<html>
  
<head>
    <style>
    h2 {
        text-emphasis: filled double-circle green;
        -webkit-text-emphasis: filled double-circle green;
    }
    </style>
    <title>Text Emphasis</title>
</head>
  
<body>
    <center>
        <h2>Welcome to GFG</h2
    </center>
</body>
  
</html>

Output:

Supported Browsers:

Article Tags :