CSS CSS Tutorial CSS Advanced CSS Responsive Web Design(RWD) CSS Grid CSS Properties Sass Tutorial Sass Functions



hanging-punctuation

CSS provides a variety of properties to control the layout and appearance of text on a web page. One such property is the hanging-punctuation property, which allows you to control the position of punctuation marks at the beginning or end of a line of text.

When text is justified, punctuation marks can sometimes create unsightly gaps or disrupt the flow of the text. By using the hanging-punctuation property, you can move these marks outside of the text block, creating a cleaner and more visually appealing layout.

The hanging-punctuation property can be applied to any block-level element that contains text, such as paragraphs, headings, and lists. It can be set to one of four values:

  • none: No hanging punctuation is applied.
  • first: Punctuation marks at the beginning of a line are moved outside of the text block.
  • last: Punctuation marks at the end of a line are moved outside of the text block.
  • allow-end: Punctuation marks at the end of a line are moved outside of the text block, but only if the line is longer than the width of the text block.

Here are some examples of how the hanging-punctuation property can be used:

Example 1: No Hanging Punctuation

In this example, the hanging-punctuation property is set to none, so no punctuation marks are moved outside of the text block:

  <p style="hanging-punctuation: none;">
    Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed euismod, velit vel bibendum bibendum, enim velit bibendum bibendum.
  </p>
  

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed euismod, velit vel bibendum bibendum, enim velit bibendum bibendum.

Example 2: Hanging Punctuation at the Beginning

In this example, the hanging-punctuation property is set to first, so punctuation marks at the beginning of a line are moved outside of the text block:

  <p style="hanging-punctuation: first;">
    Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed euismod, velit vel bibendum bibendum, enim velit bibendum bibendum.
  </p>
  

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed euismod, velit vel bibendum bibendum, enim velit bibendum bibendum.

Example 3: Hanging Punctuation at the End

In this example, the hanging-punctuation property is set to last, so punctuation marks at the end of a line are moved outside of the text block:

  <p style="hanging-punctuation: last;">
    Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed euismod, velit vel bibendum bibendum, enim velit bibendum bibendum.
  </p>
  

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed euismod, velit vel bibendum bibendum, enim velit bibendum bibendum.

Example 4: Hanging Punctuation at the End (Allow End)

In this example, the hanging-punctuation property is set to allow-end, so punctuation marks at the end of a line are moved outside of the text block, but only if the line is longer than the width of the text block:

  <p style="hanging-punctuation: allow-end;">
    Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed euismod, velit vel bibendum bibendum, enim velit bibendum bibendum.
  </p>
  

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed euismod, velit vel bibendum bibendum, enim velit bibendum bibendum.

As you can see, the hanging-punctuation property can be a useful tool for improving the layout and readability of text on a web page. By moving punctuation marks outside of the text block, you can create a cleaner and more visually appealing design.

References

Activity