Skip to content

Commit 43c0734

Browse files
committed
Made TITLE and H1 the same.
Fixed some mark-up errors. Fixed two broken fragment IDs: keyword -> keywords, string -> strings. Fixed some bibliographic references.
1 parent de2739d commit 43c0734

1 file changed

Lines changed: 14 additions & 16 deletions

File tree

css3-values/Overview.src.html

Lines changed: 14 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
<html lang="en">
55
<head>
66
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
7-
<title>CSS3 Values and Units</title>
7+
<title>CSS Values and Units Module Level 3</title>
88
<style type="text/css">
99
code, small { white-space: nowrap }
10-
.say { clor: gray; }
10+
.say { color: gray; }
1111
pre.value { font: inherit; white-space: pre-wrap; margin: 0; padding: 0; }
1212
#propvalues td { text-align: right; }
1313
#propvalues td + td { text-align: left; }
@@ -36,7 +36,7 @@ <h2 class="no-num no-toc">[LONGSTATUS] [DATE]</h2>
3636

3737
<dt>Previous version:</dt>
3838

39-
<dd><a href="http://www.w3.org/TR/2005/WD-css3-values-20050726">http://www.w3.org/TR/2005/WD-css3-values-20050726</a></dd>
39+
<dd><a href="http://www.w3.org/TR/2006/WD-css3-values-20060919/">http://www.w3.org/TR/2006/WD-css3-values-20060919/</a></dd>
4040

4141
<dt>Editors:</dt>
4242
<dd><a href="mailto:howcome@opera.com">H&aring;kon Wium Lie</a> (Opera Software)
@@ -81,7 +81,7 @@ <h2 class="no-num no-toc" id="contents">Table of contents</h2>
8181
<h2>Introduction</h2>
8282

8383
<p>The value definition field of each CSS property can contain keywords,
84-
data types (which appear between ''<'' and ''>''), and information on how
84+
data types (which appear between ''&lt;'' and ''>''), and information on how
8585
they can be combined.
8686
Generic data types (<code>&lt;length&gt;</code> being the most widely used)
8787
that can be used by many properties are described in this specification,
@@ -109,7 +109,7 @@ <h3 id="component-types">
109109
<p>Component value types are designated in several ways:
110110

111111
<ol>
112-
<li><a href="#keyword">keyword</a> values (such as ''auto'', ''disc'', etc.),
112+
<li><a href="#keywords">keyword</a> values (such as ''auto'', ''disc'', etc.),
113113
which appear literally, without quotes (e.g. <code>auto</code>)
114114

115115
<li>basic data types, which appear between ''&lt;'' and ''&gt;''
@@ -390,19 +390,19 @@ <h3 id="urls">
390390
rather than by <code>&lt;URL&gt;</code>. An example of this is the
391391
<a href="http://www.w3.org/TR/CSS21/cascade.html#at-import">''@import'' rule</a>.
392392

393-
<p>Parentheses, whitespace characters, single quotes (&apos;) and
393+
<p>Parentheses, whitespace characters, single quotes (') and
394394
double quotes (") appearing in a URL must be escaped with a backslash
395395
so that the resulting value is a valid <code>URL</code> token,
396396
e.g. 'url(open\(parens)', 'url(close\)parens)'.
397397
Depending on the type of URL, it might also be possible to write these
398398
characters as URI-escapes (where <code>(</code> = <code>%28</code>,
399399
<code>)</code> = <code>%29</code>, etc.) as described in [[URI]].
400400
Alternatively a URL containing such characters may be represented as
401-
a quoted <a href="#string">string</a> within the ''url()'' notation.
401+
a quoted <a href="#strings">string</a> within the ''url()'' notation.
402402

403403
<p>In order to create modular style sheets that are not dependent on
404404
the absolute location of a resource, authors should use relative URIs.
405-
Relative URIs (as defined in [[RFC3986]]) are resolved to full URIs
405+
Relative URIs (as defined in [[URI]]) are resolved to full URIs
406406
using a base URI. RFC&nbsp;3986, section&nbsp;3, defines the normative
407407
algorithm for this process. For CSS style sheets, the base URI is that
408408
of the style sheet, not that of the source document.
@@ -487,7 +487,7 @@ <h2 id="lengths">
487487
instead as the <code>&lt;number&gt;</code> ''0''. (In other words,
488488
for zero lengths the unit identifier is optional.)</p>
489489

490-
A <dfn>dimension</dfn> is a <i>number</i> immediately followed by a
490+
<p>A <dfn>dimension</dfn> is a <i>number</i> immediately followed by a
491491
unit identifier. It corresponds to the <code>DIMENSION</code> token in the
492492
<a href="http://www.w3.org/TR/CSS21/syndata.html#tokenization">grammar</a>.
493493
[[!CSS21]] Like keywords, unit identifiers are case-insensitive within
@@ -619,7 +619,7 @@ <h4 id="viewport-relative-lengths">
619619
</dl>
620620

621621
<h3 id="absolute-lengths">
622-
Absolute lengths: the ''cm'', ''mm'', ''in'', ''pt'', ''pc'', ''px'' units</h4>
622+
Absolute lengths: the ''cm'', ''mm'', ''in'', ''pt'', ''pc'', ''px'' units</h3>
623623

624624

625625
<p>The <dfn>absolute length units</dfn> are fixed in relation to
@@ -655,7 +655,6 @@ <h3 id="absolute-lengths">
655655
h4 { font-size: 12pt } /* points */
656656
h4 { font-size: 1pc } /* picas */
657657
p { font-size: 12px } /* px */</pre>
658-
</div>
659658

660659

661660
<p>For a CSS device, these dimensions are either anchored (i) by
@@ -812,7 +811,7 @@ <h3 id="images">
812811
<p>The <dfn id="image-value"><code>&lt;image&gt;</code></dfn> data type is
813812
defined herein as equivalent to <code>&lt;url&gt;</code>.
814813
It is <a href="http://www.w3.org/TR/css3-images/#image">extended</a> in
815-
[[!CSS3IMAGES]]: UAs that support CSS Image Values Level 3 must interpret
814+
[[!CSS3-IMAGES]]: UAs that support CSS Image Values Level 3 must interpret
816815
<code>&lt;image&gt;</code> as defined therein.
817816

818817
<h2 id="layout-values">
@@ -823,7 +822,7 @@ <h3 id="proportions">
823822

824823
<p>The <dfn title="fr">fr unit</dfn> is used to represent proportions,
825824
such as the proportions used to distribute remaining space in a flex
826-
layout computation. [[CSS3FLEX]] When multiple fractions participate
825+
layout computation. [[CSS3-FLEXBOX]] When multiple fractions participate
827826
in a calculation, the remainder is distributed proportionally to their
828827
numeric value.
829828

@@ -871,10 +870,10 @@ <h2 id="functional-notation">
871870
<!-- -->background: url(http://www.example.org/image);
872871
<!-- -->color: rgb(100, 200, 50 );
873872
<!-- -->content: counter(list-item) ". ";
874-
<!-- -->width: calc(50% - 2em);<pre>
873+
<!-- -->width: calc(50% - 2em);</pre>
875874

876875
<h3 id="calc">
877-
Calculations: ''calc()'', ''min()'' and ''max()''</h4>
876+
Calculations: ''calc()'', ''min()'' and ''max()''</h3>
878877

879878
<p>The <dfn>calc()</dfn>, <dfn>min()</dfn>, and <dfn>max()</dfn> functions
880879
can be used wherever
@@ -1407,7 +1406,6 @@ <h3 id="stages-examples">
14071406
<th>Used value
14081407
<th>Actual value
14091408
</tr>
1410-
<thead>
14111409
<tbody>
14121410
<tr>
14131411
<td>(a)

0 commit comments

Comments
 (0)