Skip to content

Commit fe28523

Browse files
committed
dummy checkin for debugging
1 parent 4999d72 commit fe28523

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

css3-values/Overview.src.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -257,6 +257,12 @@ <h3>Strings</h3>
257257
<p>A <dfn>string</dfn> is a sequence of characters enclosed by double quotes or single quotes. Double quotes cannot occur inside double quotes, unless escaped (as '\"' or as '\22'). Analogously for single quotes ("\'" or "\27").<!--"-->
258258

259259
<div class=example>
260+
<pre>
261+
content: &#34;this is a 'string'&#34;;
262+
content: &#34;this is a \"string\"&#34;;
263+
content: 'this is a &#34;string&#34;';
264+
content: 'this is a \'string\'';
265+
</pre>
260266
</div>
261267

262268
<p>A string cannot directly contain a <span class="index">newline</span>. To

0 commit comments

Comments
 (0)