datat.fi/example/_posts/2009-10-05-edge-case-title-...

26 lines
537 B
Markdown
Raw Normal View History

2017-03-07 23:12:17 +02:00
---
title: "Antidisestablishmentarianism"
categories:
- Edge Case
tags:
- content
- css
- edge case
- html
- layout
- title
2017-03-09 21:38:14 +02:00
last_modified_at: 2017-03-09T14:10:02-05:00
2017-03-07 23:12:17 +02:00
---
2017-03-09 21:38:14 +02:00
This post title has a long word that could potentially overflow the content area.
2017-03-07 23:12:17 +02:00
A few things to check for:
2017-03-09 21:38:14 +02:00
* Non-breaking text in the title should have no adverse effects on layout or functionality.
2017-03-07 23:12:17 +02:00
* Check the browser window / tab title.
2017-03-09 21:38:14 +02:00
The following CSS property will help you support non-breaking text.
2017-03-07 23:12:17 +02:00
```css
word-wrap: break-word;
```