CSS hanging-punctuation Property

You are Here:

CSS hanging-punctuation Property

CSS hanging-punctuation property specifies whether a punctuation mark should hang at the start or end of a line of text.

Note: Hanging punctuation may be placed outside the line box.

Example

HTML Online Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> p{ hanging-punctuation: first; } </style> </head> <body> <h1>CSS hanging-punctuation Property</h1> <p>"Joanne Rowling was born on 31st July 1965 ..."</p> </body> </html>

Syntax

Using CSS

element{ hanging-punctuation: first; }

Using Javascript

object.style.hangingPunctuation="first";

Animatable

No, hanging-punctuation property is not animatable. CSS Animatable Properties Reference.

Default Value

Default value for CSS hanging-punctuation property is none.

Property Value

The following table provides a list of values for CSS hanging-punctuation property.

ValueExplanation
noneSpecifies no character hangs.
firstSpecifies an opening bracket or quote at the start of the first formatted line of an element hangs.
lastSpecifies a closing bracket or quote at the end of the last formatted line of an element hangs.
force-endSpecifies a stop or comma at the end of a line hangs.
allow-endSpecifies a stop or comma at the end of a line hangs if it does not otherwise fit prior to justification.

All in One

In the following example, we will demonstrate all values of CSS hanging-punctuation property.

Example

HTML Online Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> p:nth-child(3){ hanging-punctuation: none; } p:nth-child(5){ hanging-punctuation: first; } p:nth-child(7){ hanging-punctuation: last; } p:nth-child(9){ hanging-punctuation: force-end; } p:nth-child(11){ hanging-punctuation: allow-end; } </style> </head> <body> <h1>CSS hanging-punctuation Property</h1> <h2>hanging-punctuation: none;</h2> <p>"Joanne Rowling was born on 31st July 1965 ..."</p> <h2>hanging-punctuation: first;</h2> <p>"Joanne Rowling was born on 31st July 1965 ..."</p> <h2>hanging-punctuation: last;</h2> <p>"Joanne Rowling was born on 31st July 1965 ..."</p> <h2>hanging-punctuation: force-end;</h2> <p>"Joanne Rowling was born on 31st July 1965 ..."</p> <h2>hanging-punctuation: allow-end;</h2> <p>"Joanne Rowling was born on 31st July 1965 ..."</p> </body> </html>

Using Multiple Values

In the following example, we will demonstrate how to use multiple values for CSS hanging-punctuation property.

Example

HTML Online Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> p:nth-child(3){ hanging-punctuation: first; } p:nth-child(5){ hanging-punctuation: first force-end; } p:nth-child(7){ hanging-punctuation: first force-end last; } </style> </head> <body> <h1>CSS hanging-punctuation Property</h1> <h2>hanging-punctuation: first;</h2> <p>"Joanne Rowling was born on 31st July 1965 ..."</p> <h2>hanging-punctuation: first force-end;</h2> <p>"Joanne Rowling was born on 31st July 1965 ..."</p> <h2>hanging-punctuation: first force-end last;</h2> <p>"Joanne Rowling was born on 31st July 1965 ..."</p> </body> </html>

Using JavaScript

In the following example, we will demonstrate how to change the CSS hanging-punctuation property of an element using JavaScript.

Example

HTML Online Editor
<!DOCTYPE html> <html lang="en-US"> <body> <h1>CSS hanging-punctuation Property</h1> <p>"Joanne Rowling was born on 31st July 1965 ..."</p> <button onclick="myFunction()">Click Me</button> <script> var x = document.getElementsByTagName("p")[0]; function myFunction(){ x.style.hangingPunctuation = "first"; } </script> </body> </html>

Reminder

Hi Developers, we almost covered 98.7% of CSS Tutorials with examples for quick and easy learning.

We are working to cover every Single Concept in CSS.

Please do google search for:

Join Our Channel

Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.

This channel is primarily useful for Full Stack Web Developer.

Share this Page

Meet the Author