Skip to content

Commit c30ee48

Browse files
committed
[css2] Generated. Do not edit!
--HG-- extra : convert_revision : svn%3A73dc7c4b-06e6-40f3-b4f7-9ed1dbc14bfc/trunk%403014
1 parent 8c2c652 commit c30ee48

52 files changed

Lines changed: 2421 additions & 1337 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

css2/about.html

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -204,8 +204,9 @@ <H3>1.4.2 <a name="property-defs">CSS property definitions</a></H3>
204204
<h4>1.4.2.1 <a name="value-defs">Value</a></h4>
205205

206206
<P>This part specifies the set of valid values for the property whose
207-
name is <a href="about.html#propdef-property-name" class="noxref"><span class="propinst-property-name">'property-name'</span></a>. Value
208-
types may be designated in several ways:
207+
name is <a href="about.html#propdef-property-name" class="noxref"><span class="propinst-property-name">'property-name'</span></a>. A property
208+
value can have one or more components. Component value types are designated
209+
in several ways:
209210

210211
<ol>
211212
<li> <a name="syndata.html#keywords">keyword</a> values (e.g., auto,
@@ -240,7 +241,7 @@ <h4>1.4.2.1 <a name="value-defs">Value</a></h4>
240241
literally, without quotes (e.g., red). The slash (/) and the comma (,)
241242
must also appear literally.
242243

243-
<P>Values may be arranged as follows:</p>
244+
<P>Component values may be arranged into property values as follows:</p>
244245

245246
<ul>
246247
<li>Several juxtaposed words mean that all of them must occur, in the
@@ -249,7 +250,7 @@ <h4>1.4.2.1 <a name="value-defs">Value</a></h4>
249250
exactly one of them must occur.
250251
<li>A double bar (||) separates
251252
two or more options: one or more of them must occur, in any order.
252-
<li>A double ampersand (&&) separates two or more values all of which
253+
<li>A double ampersand (&&) separates two or more components, all of which
253254
must occur, in any order.
254255
<li>Brackets ([&nbsp;]) are for grouping.
255256
</ul>
@@ -296,10 +297,10 @@ <h4>1.4.2.1 <a name="value-defs">Value</a></h4>
296297
<EM>Value:</EM> inset? && [ &lt;length&gt;{2,4} && &lt;color&gt;? ]
297298
</BLOCKQUOTE>
298299

299-
<p>Value types are specified in terms of tokens, as described in <a
300+
<p>Component values are specified in terms of tokens, as described in <a
300301
href="grammar.html#scanner">Appendix G.2</a>. As the grammar allows spaces
301302
between tokens in the components of the <code>expr</code> production,
302-
spaces may appear between tokens in values.
303+
spaces may appear between tokens in property values.
303304

304305
<p class=note>Note: In many cases, spaces will in fact be
305306
<em>required</em> between tokens in order to distinguish them from
@@ -315,7 +316,7 @@ <h4>1.4.2.2 <a name="initial-value">Initial</a></h4>
315316
<P>This part specifies the property's initial value. Please consult
316317
the section on <a href="cascade.html">the cascade</a> for information
317318
about the interaction between style sheet-specified, inherited, and
318-
initial values.
319+
initial property values.
319320

320321

321322
<h4>1.4.2.3 <a name="applies-to">Applies to</a></h4>
@@ -331,14 +332,14 @@ <h4>1.4.2.4 <a name="inherited-prop">Inherited</a></h4>
331332
from an ancestor element. Please consult the section on <a
332333
href="cascade.html">the cascade</a> for information about the
333334
interaction between style sheet-specified, inherited, and initial
334-
values.
335+
property values.
335336

336337

337338
<h4>1.4.2.5 <a name="percentage-wrt">Percentage values</a></h4>
338339

339340
<p>This part indicates how percentages should be interpreted, if they occur in
340341
the value of the property. If "N/A" appears here, it means that the
341-
property does not accept percentages as values.
342+
property does not accept percentages in its values.
342343

343344
<h4>1.4.2.6 <a name="media-applies">Media groups</a></h4>
344345

css2/box.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ <H2>8.3 <a name="margin-properties">Margin properties</a>:
327327
class="propinst-margin-left">'margin-left'</span></a> at the same place in
328328
the style sheet.
329329

330-
<P> If there is only one value, it applies to all
330+
<P> If there is only one component value, it applies to all
331331
sides. If there are two values, the top and bottom margins
332332
are set to the first value and the right and left margins are
333333
set to the second. If there are three values, the top is
@@ -557,7 +557,7 @@ <H2>8.4 <a name="padding-properties">Padding properties</a>:
557557
class="propinst-padding-left">'padding-left'</span></a> at the same place
558558
in the style sheet.
559559

560-
<P> If there is only one value, it applies to all
560+
<P> If there is only one component value, it applies to all
561561
sides. If there are two values, the top and bottom paddings
562562
are set to the first value and the right and left paddings are
563563
set to the second. If there are three values, the top is
@@ -683,7 +683,7 @@ <H3>8.5.1 <a name="border-width-properties">Border width</A>: <a href="box.html#
683683
<a href="box.html#propdef-border-left-width" class="noxref"><span class="propinst-border-left-width">'border-left-width'</span></a> at
684684
the same place in the style sheet.
685685

686-
<P> If there is only one value, it applies to all
686+
<P> If there is only one component value, it applies to all
687687
sides. If there are two values, the top and bottom borders
688688
are set to the first value and the right and left are
689689
set to the second. If there are three values, the top is
@@ -761,8 +761,8 @@ <H3>8.5.2 <A name="border-color-properties">Border color</A>:
761761

762762

763763
<P>The <a href="box.html#propdef-border-color" class="noxref"><span class="propinst-border-color">'border-color'</span></a>
764-
property can have from one to four values, and the values are set on
765-
the different sides as for <a href="box.html#propdef-border-width" class="noxref"><span
764+
property can have from one to four component values, and the values
765+
are set on the different sides as for <a href="box.html#propdef-border-width" class="noxref"><span
766766
class="propinst-border-width">'border-width'</span></a>.
767767

768768
<P>If an element's border color is not specified
@@ -876,7 +876,7 @@ <H3>8.5.3 <A name="border-style-properties">Border style</a>:
876876

877877
<P> The <a href="box.html#propdef-border-style" class="noxref"><span class="propinst-border-style">'border-style'</span></a>
878878
property sets the style of the four borders. It can have from one to
879-
four values, and the values are set on the different sides as for
879+
four component values, and the values are set on the different sides as for
880880
<a href="box.html#propdef-border-width" class="noxref"><span class="propinst-border-width">'border-width'</span></a> above.
881881

882882
<div class="example"><P style="display:none">Example(s):</P><P>

css2/cascade.html

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,11 @@ <h2>6.2 <a name="inheritance">Inheritance</a></h2>
177177
for both H1 and EM might be, for example, '12pt'.
178178
</div>
179179

180+
<p class=note>Note that inheritance follows the document tree and is
181+
not intercepted by <a href="visuren.html#box-gen"><a name="x5"><span
182+
class=index-inst>anonymous boxes.</span></a></a>
183+
184+
180185
<h3>6.2.1 The <span class="index-def" title="inherit, definition
181186
of"><a name="value-def-inherit">'inherit'</a></span>
182187
value</h3>
@@ -217,7 +222,7 @@ <h3>6.2.1 The <span class="index-def" title="inherit, definition
217222

218223
<H2>6.3 <a name="at-import">The @import rule</a></h2>
219224

220-
<P>The <a name="x6"><span class="index-def"
225+
<P>The <a name="x7"><span class="index-def"
221226
title="@import"><dfn>'@import'</dfn></span></a> rule allows users to
222227
import style rules from other style sheets. In CSS&nbsp;2.1, any
223228
@import rules must precede all other rules (except the @charset rule,
@@ -239,8 +244,8 @@ <H2>6.3 <a name="at-import">The @import rule</a></h2>
239244

240245
<p>So that user agents can avoid retrieving resources for unsupported
241246
<a href="media.html">media types</a>, authors may specify
242-
media-dependent <a name="x7"><span class="index-inst"
243-
title="@import">@import</span></a> rules. These <a name="x8"><span class="index-def"
247+
media-dependent <a name="x8"><span class="index-inst"
248+
title="@import">@import</span></a> rules. These <a name="x9"><span class="index-def"
244249
title="conditional import|media-dependent import">conditional
245250
imports</span></a> specify comma-separated media types after the URI.
246251

@@ -306,7 +311,7 @@ <H2>6.4 <a name="cascade">The cascade</a></h2>
306311
<P>Style sheets from these three origins will overlap in scope, and
307312
they interact according to the cascade.
308313

309-
<P>The CSS <a name="x11"><span class="index-def" title="cascade">cascade</span></a>
314+
<P>The CSS <a name="x12"><span class="index-def" title="cascade">cascade</span></a>
310315
assigns a weight to each style rule. When several rules apply, the one
311316
with the greatest weight takes precedence.
312317

@@ -378,7 +383,7 @@ <H3>6.4.2 <a name="important-rules">!important rules</a></H3>
378383
of documents by giving users with special requirements (large
379384
fonts, color combinations, etc.) control over presentation.
380385

381-
<P>Declaring a <a name="x12"><span class="index-inst" title="shorthand
386+
<P>Declaring a <a name="x13"><span class="index-inst" title="shorthand
382387
property">shorthand property</span></a> (e.g., <a href="colors.html#propdef-background" class="noxref"><span
383388
class="propinst-background">'background'</span></a>) to be "!important" is
384389
equivalent to declaring all of its sub-properties to be "!important".

0 commit comments

Comments
 (0)