diff --git a/.vscode/dictionaries/ignore-list.txt b/.vscode/dictionaries/ignore-list.txt index 59823468260a82b..b44d4a3348f2844 100644 --- a/.vscode/dictionaries/ignore-list.txt +++ b/.vscode/dictionaries/ignore-list.txt @@ -142,6 +142,7 @@ gaesamplesite gims globalprivacycontrol.org GNF576746573fhdg4737dh4 +gogerychwyrndrobwllllantysiliogogogoch Graece gubergren hellonode @@ -230,7 +231,7 @@ potenti PPCCLL proinde public-webapps -pwllgwyngyllgogerychwyrngogogoch +pwllgwyngyll PXHQTXP Quaaaack quandong diff --git a/files/en-us/learn/html/cheatsheet/index.md b/files/en-us/learn/html/cheatsheet/index.md index 91dded7fd6c882e..5db88e9bd5b0a62 100644 --- a/files/en-us/learn/html/cheatsheet/index.md +++ b/files/en-us/learn/html/cheatsheet/index.md @@ -176,7 +176,7 @@ see <cite>The Monster Book of Monsters</cite>.
 <div style="width: 200px">
-  Llanfair<wbr>pwllgwyngyllgogerychwyrngogogoch.
+  Llanfair<wbr>pwllgwyngyll<wbr>gogerychwyrndrobwllllantysiliogogogoch.
 </div>
{{EmbedLiveSample("wbr-example", 100, 80)}} diff --git a/files/en-us/web/css/css_text/wrapping_breaking_text/index.md b/files/en-us/web/css/css_text/wrapping_breaking_text/index.md index b96b1a4b8acda4f..d20e491e54fed72 100644 --- a/files/en-us/web/css/css_text/wrapping_breaking_text/index.md +++ b/files/en-us/web/css/css_text/wrapping_breaking_text/index.md @@ -6,8 +6,6 @@ page-type: guide {{CSSRef}} - - This guide explains the various ways in which overflowing text can be managed in CSS. ## What is overflowing text? @@ -165,11 +163,11 @@ In the example below there is a checkbox and label. Let's say, you want the labe ## Adding hyphens -To add hyphens when words are broken, use the CSS {{cssxref("hyphens")}} property. Using a value of `auto`, the browser is free to automatically break words at appropriate hyphenation points, following whatever rules it chooses. To have some control over the process, use a value of `manual`, then insert a hard (U+2010) or soft break character (U+00AD) into the string. A hard break character can be added using `‐` or `‐`, and a soft break character can be added using `­`, `­`, or `­` HTML character codes. A hard break will always break, even if it is not necessary to do so. A soft break only breaks if breaking is needed. +To add hyphens when words are broken, use the CSS {{cssxref("hyphens")}} property. Using a value of `auto`, the browser is free to automatically break words at appropriate hyphenation points, following whatever rules it chooses. To have some control over the process, use a value of `manual`, then insert a hard (U+2010) or soft break character (U+00AD) into the string. A hard break character can be added using `‐` or `‐`, and a soft break character can be added using the `­`, `­`, or `­` HTML character codes. A hard break will always break, even if it is not necessary to do so. A soft break only breaks if breaking is needed. ```html live-sample___hyphens
- Llanfair­pwllgwyngy­llgogerychwyrndrobwllllantysiliogogogoch + Llanfair­pwllgwyngyll­gogerychwyrndrobwllllantysiliogogogoch
``` @@ -198,7 +196,7 @@ In the below example the text breaks in the location of the {{HTMLElement("wbr") ```html live-sample___wbr
- Llanfairpwllgwyngyllgogerychwyrndrobwllllantysiliogogogoch + Llanfairpwllgwyngyllgogerychwyrndrobwllllantysiliogogogoch
```