Skip to content

Commit 546669e

Browse files
committed
1 parent c87b393 commit 546669e

2 files changed

Lines changed: 28 additions & 5 deletions

File tree

css3-values/Overview.html

Lines changed: 21 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@
2828

2929
<h1>CSS Values and Units Module Level 3</h1>
3030

31-
<h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 19 June 2012</h2>
31+
<h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 28 June 2012</h2>
3232

3333
<dl>
3434
<dt>This version:
3535

3636
<dd><a
37-
href="http://www.w3.org/TR/2012/ED-css3-values-20120619/">http://www.w3.org/TR/2012/ED-css3-values-20120619/</a>
37+
href="http://www.w3.org/TR/2012/ED-css3-values-20120628/">http://www.w3.org/TR/2012/ED-css3-values-20120628/</a>
3838

3939
<dt>Latest version:
4040

@@ -231,7 +231,8 @@ <h2 class="no-num no-toc" id=contents>Table of contents</h2>
231231
<li><a href="#viewport-relative-lengths"><span class=secno>5.1.2.
232232
</span> Viewport-percentage lengths: the ‘<code
233233
class=css>vw</code>’, ‘<code class=css>vh</code>’, ‘<code
234-
class=css>vmin</code>’ units</a>
234+
class=css>vmin</code>’, ‘<code class=css>vmax</code>’ units</a>
235+
235236
</ul>
236237

237238
<li><a href="#absolute-lengths"><span class=secno>5.2. </span> Absolute
@@ -896,6 +897,11 @@ <h3 id=relative-lengths><span class=secno>5.1. </span> Relative lengths</h3>
896897
<td><a href="#vmin-unit"><code class=css>vmin</code></a>
897898

898899
<td>minimum of the viewport's height and width
900+
901+
<tr>
902+
<td><a href="#vmax-unit"><code class=css>vmax</code></a>
903+
904+
<td>maximum of the viewport's height and width
899905
</table>
900906

901907
<p>Child elements do not inherit the relative values as specified for their
@@ -979,7 +985,8 @@ <h4 id=viewport-relative-lengths><span class=secno>5.1.2. </span>
979985
Viewport-percentage lengths: the ‘<a href="#vw-unit"><code
980986
class=css>vw</code></a>’, ‘<a href="#vh-unit"><code
981987
class=css>vh</code></a>’, ‘<a href="#vmin-unit"><code
982-
class=css>vmin</code></a>’ units</h4>
988+
class=css>vmin</code></a>’, ‘<a href="#vmax-unit"><code
989+
class=css>vmax</code></a>’ units</h4>
983990

984991
<p>The viewport-percentage lengths are relative to the size of the initial
985992
containing block. When the height or width of the viewport is changed,
@@ -1005,6 +1012,12 @@ <h4 id=viewport-relative-lengths><span class=secno>5.1.2. </span>
10051012
<dd>Equal to the smaller of ‘<a href="#vw-unit"><code
10061013
class=css>vw</code></a>’ or ‘<a href="#vh-unit"><code
10071014
class=css>vh</code></a>’.
1015+
1016+
<dt><dfn id=vmax-unit title=vmax>vmax unit</dfn>
1017+
1018+
<dd>Equal to the larger of ‘<a href="#vw-unit"><code
1019+
class=css>vw</code></a>’ or ‘<a href="#vh-unit"><code
1020+
class=css>vh</code></a>’.
10081021
</dl>
10091022

10101023
<p class=note>Note that Paged Media defines how the initial containing
@@ -1787,6 +1800,8 @@ <h3 id=attr-notation><span class=secno>8.3. </span> Attribute References:
17871800

17881801
<dt><a href="#vmin-unit"><code class=css>vmin</code></a>
17891802

1803+
<dt><a href="#vmax-unit"><code class=css>vmax</code></a>
1804+
17901805
<dt><code class=css>mm</code>
17911806

17921807
<dt><code class=css>cm</code>
@@ -2406,6 +2421,8 @@ <h2 class=no-num id=index>Index</h2>
24062421

24072422
<li>vh, <a href="#vh-unit" title=vh><strong>5.1.2.</strong></a>
24082423

2424+
<li>vmax, <a href="#vmax-unit" title=vmax><strong>5.1.2.</strong></a>
2425+
24092426
<li>vmin, <a href="#vmin-unit" title=vmin><strong>5.1.2.</strong></a>
24102427

24112428
<li>vw, <a href="#vw-unit" title=vw><strong>5.1.2.</strong></a>

css3-values/Overview.src.html

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -536,6 +536,8 @@ <h3 id="relative-lengths">
536536
<td>viewport's height
537537
<tr><td>''vmin''
538538
<td>minimum of the viewport's height and width
539+
<tr><td>''vmax''
540+
<td>maximum of the viewport's height and width
539541
</tbody>
540542
</table>
541543

@@ -593,7 +595,7 @@ <h4 id="font-relative-lengths">
593595
</dl>
594596

595597
<h4 id="viewport-relative-lengths">
596-
Viewport-percentage lengths: the ''vw'', ''vh'', ''vmin'' units</h4>
598+
Viewport-percentage lengths: the ''vw'', ''vh'', ''vmin'', ''vmax'' units</h4>
597599

598600
<p>The viewport-percentage lengths are relative to the size of the initial
599601
containing block. When the height or width of the viewport is changed,
@@ -614,6 +616,9 @@ <h4 id="viewport-relative-lengths">
614616

615617
<dt><dfn title="vmin">vmin unit</dfn>
616618
<dd>Equal to the smaller of ''vw'' or ''vh''.
619+
620+
<dt><dfn title="vmax">vmax unit</dfn>
621+
<dd>Equal to the larger of ''vw'' or ''vh''.
617622
</dl>
618623

619624
<p class='note'>Note that Paged Media defines how the initial containing block
@@ -1321,6 +1326,7 @@ <h3 id="attr-notation">
13211326
<dt>''vw''
13221327
<dt>''vh''
13231328
<dt>''vmin''
1329+
<dt>''vmax''
13241330
<dt>''mm''
13251331
<dt>''cm''
13261332
<dt>''in''

0 commit comments

Comments
 (0)