Skip to content

Commit 291959a

Browse files
committed
Fixes
1 parent 1e6dcbc commit 291959a

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

.vscode/dictionaries/ignore-list.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,7 @@ gaesamplesite
142142
gims
143143
globalprivacycontrol.org
144144
GNF576746573fhdg4737dh4
145+
gogerychwyrndrobwllllantysiliogogogoch
145146
Graece
146147
gubergren
147148
hellonode
@@ -230,7 +231,7 @@ potenti
230231
PPCCLL
231232
proinde
232233
public-webapps
233-
pwllgwyngyllgogerychwyrngogogoch
234+
pwllgwyngyll
234235
PXHQTXP
235236
Quaaaack
236237
quandong

files/en-us/learn/html/cheatsheet/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ see &#x3C;cite>The Monster Book of Monsters&#x3C;/cite>.</pre
176176
<td id="wbr-example">
177177
<pre class="brush: html">
178178
&#x3C;div style="width: 200px">
179-
Llanfair&#x3C;wbr>pwllgwyngyllgogerychwyrngogogoch.
179+
Llanfair&#x3C;wbr>pwllgwyngyll&#x3C;wbr>gogerychwyrndrobwllllantysiliogogogoch.
180180
&#x3C;/div></pre
181181
>
182182
{{EmbedLiveSample("wbr-example", 100, 80)}}

files/en-us/web/css/css_text/wrapping_breaking_text/index.md

+3-5
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ page-type: guide
66

77
{{CSSRef}}
88

9-
<!-- cSpell:ignore pwllgwyngy -->
10-
119
This guide explains the various ways in which overflowing text can be managed in CSS.
1210

1311
## 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
165163

166164
## Adding hyphens
167165

168-
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 `&#x2010;`, and a soft break character can be added using `&shy;`, `&#173;`, or `&#xad` 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.
166+
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 `&#x2010;`, and a soft break character can be added using the `&shy;`, `&#173;`, or `&#xad` 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.
169167

170168
```html live-sample___hyphens
171169
<div class="box">
172-
Llanfair&shy;pwllgwyngy&shy;llgogerychwyrndrobwllllantysiliogogogoch
170+
Llanfair&shy;pwllgwyngyll&shy;gogerychwyrndrobwllllantysiliogogogoch
173171
</div>
174172
```
175173

@@ -198,7 +196,7 @@ In the below example the text breaks in the location of the {{HTMLElement("wbr")
198196

199197
```html live-sample___wbr
200198
<div class="box">
201-
Llanfair<wbr />pwllgwyngyllgogerychwyrndrobwllllantysiliogogogoch
199+
Llanfair<wbr />pwllgwyngyll<wbr />gogerychwyrndrobwllllantysiliogogogoch
202200
</div>
203201
```
204202

0 commit comments

Comments
 (0)