8000 csswg-drafts/css3-gcpm/Overview.html at 39237abd64ef7e52c50ba078aea11503f8ca2bce · w3c/csswg-drafts · GitHub
Skip to content

Latest commit

 

History

History
4444 lines (3319 loc) · 128 KB

File metadata and controls

4444 lines (3319 loc) · 128 KB
history bla bla forever.
<cite>John Johnson</cite>
</blockquote>
</pre>
<p>Depending on the width of the containing block, this may be rendered
as:
<pre>
Bla great bla bla world bla bla
empire bla bla color bla bla
history bla bla forever. John
Johnson
</pre>
<p>However, this rendering is preferable:
<pre>
Bla great bla bla world bla bla
empire bla bla color bla bla
history bla bla forever.
John Johnson
</pre>
<p>To indicate that <q>John Johnson</q> should be kept on one line, this
rule can be added to the style sheet:
<pre>
cite { text-wrap: suppress }
</pre>
<p>Until &lsquo;<code class=property>text-wrap</code>&rsquo; is widely
supported, this rule can also be used:
<pre>
cite { white-space: nowrap }
</pre>