css3-overflow/Overview.src.html

Mon, 06 Aug 2012 19:44:01 -0700

author
L. David Baron <dbaron@dbaron.org>
date
Mon, 06 Aug 2012 19:44:01 -0700
changeset 6480
4183f2de4bf6
parent 6479
692f0f5f757b
child 6481
2982b7c71c57
permissions
-rw-r--r--

Add inheritance example.

dbaron@6470 1 <!DOCTYPE html>
dbaron@6470 2 <html lang="en">
dbaron@6470 3 <head>
dbaron@6470 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
dbaron@6474 5 <title>CSS Region Styling Module Level 3</title>
dbaron@6470 6 <link rel=contents href="#contents">
dbaron@6470 7 <link rel=index href="#index">
dbaron@6470 8 <link rel="stylesheet" type="text/css" href="../default.css">
dbaron@6470 9 <link rel="stylesheet" type="text/css"
dbaron@6470 10 href="http://www.w3.org/StyleSheets/TR/W3C-[STATUS].css">
dbaron@6475 11 <style>
dbaron@6477 12 table.source-demo-pair {
dbaron@6477 13 width: 100%;
dbaron@6477 14 }
dbaron@6475 15 .in-cards-demo {
dbaron@6475 16 width: 13em;
dbaron@6475 17 height: 8em;
dbaron@6475 18
dbaron@6475 19 padding: 4px;
dbaron@6475 20 border: medium solid blue;
dbaron@6475 21 margin: 6px;
dbaron@6475 22
dbaron@6475 23 font: medium/1.3 Times New Roman, Times, serif;
dbaron@6475 24 white-space: nowrap;
dbaron@6475 25 }
dbaron@6477 26 .bouncy-columns-demo {
dbaron@6477 27 width: 6em;
dbaron@6477 28 height: 10em;
dbaron@6477 29 float: left;
dbaron@6477 30 margin: 1em;
dbaron@6477 31 font: medium/1.25 Times New Roman, Times, serif;
dbaron@6477 32 white-space: nowrap;
dbaron@6477 33 }
dbaron@6477 34 .bouncy-columns-demo.one {
dbaron@6477 35 background: aqua; color: black;
dbaron@6477 36 transform: rotate(-3deg);
dbaron@6477 37 }
dbaron@6477 38 .bouncy-columns-demo.two {
dbaron@6477 39 background: yellow; color: black;
dbaron@6477 40 transform: rotate(3deg);
dbaron@6477 41 }
dbaron@6479 42
dbaron@6480 43 .article-font-inherit-demo {
dbaron@6480 44 font: 1em/1.25 Times New Roman, Times, serif;
dbaron@6480 45 white-space: nowrap;
dbaron@6480 46 }
dbaron@6480 47 .article-font-inherit-demo.one {
dbaron@6480 48 width: 12em;
dbaron@6480 49 font-size: 1.5em;
dbaron@6480 50 margin-bottom: 1em;
dbaron@6480 51 height: 4em;
dbaron@6480 52 }
dbaron@6480 53 .article-font-inherit-demo.two {
dbaron@6480 54 width: 11em;
dbaron@6480 55 margin-left: 5em;
dbaron@6480 56 margin-right: 2em;
dbaron@6480 57 }
dbaron@6480 58
dbaron@6479 59 .article-max-lines-demo {
dbaron@6479 60 font: 1em/1.25 Times New Roman, Times, serif;
dbaron@6479 61 white-space: nowrap;
dbaron@6479 62 }
dbaron@6479 63 .article-max-lines-demo.one::first-letter {
dbaron@6479 64 font-size: 2em;
dbaron@6479 65 line-height: 0.9;
dbaron@6479 66 }
dbaron@6479 67 .article-max-lines-demo.one {
dbaron@6479 68 font-size: 1.5em;
dbaron@6479 69 width: 16em;
dbaron@6479 70 }
dbaron@6479 71 .article-max-lines-demo.two {
dbaron@6479 72 width: 11.5em;
dbaron@6479 73 float: left; margin-right: 1em;
dbaron@6479 74 }
dbaron@6479 75 .article-max-lines-demo.three {
dbaron@6479 76 width: 11.5em;
dbaron@6479 77 float: left;
dbaron@6479 78 }
dbaron@6475 79 </style>
dbaron@6470 80 </head>
dbaron@6470 81
dbaron@6470 82 <div class="head">
dbaron@6470 83 <!--logo-->
dbaron@6470 84
dbaron@6474 85 <h1>CSS Region Styling Module Level 3</h1>
dbaron@6470 86
dbaron@6470 87 <h2 class="no-num no-toc">[LONGSTATUS] [DATE]</h2>
dbaron@6470 88 <dl>
dbaron@6470 89 <dt>This version:
dbaron@6474 90 <dd><a href="[VERSION]">http://www.w3.org/TR/[YEAR]/ED-css3-region-styling-[CDATE]/</a>
dbaron@6470 91
dbaron@6470 92 <dt>Latest version:
dbaron@6470 93 <dd><a href="http://www.w3.org/TR/[SHORTNAME]/">http://www.w3.org/TR/[SHORTNAME]/</a>
dbaron@6470 94
dbaron@6470 95 <dt>Editor's draft:
dbaron@6470 96 <dd><a href="http://dev.w3.org/csswg/[SHORTNAME]/">http://dev.w3.org/csswg/[SHORTNAME]/</a>
dbaron@6470 97
dbaron@6470 98 <!--
dbaron@6470 99 <dt>Previous version:
dbaron@6470 100 <dd><a href="http://www.w3.org/PreviousVersionURI">
dbaron@6470 101 http://www.w3.org/PreviousVersionURI</a>
dbaron@6470 102 -->
dbaron@6470 103
dbaron@6470 104 <dt>Issue Tracking:</dt>
dbaron@6470 105 <dd>Maintained in document (only editor's draft is current)
dbaron@6470 106
dbaron@6470 107 <dt>Feedback:</dt>
dbaron@6470 108 <dd><a href="http://lists.w3.org/Archives/Public/www-style/">www-style@w3.org</a> with subject line &ldquo;<kbd>[[SHORTNAME]] <var>&hellip; message topic &hellip;</var></kbd>&rdquo;
dbaron@6470 109
dbaron@6470 110 <dt>Editors:
dbaron@6470 111 <dd class="h-card vcard">
dbaron@6470 112 <a class="p-name fn u-url url" rel="author"
dbaron@6470 113 href="http://dbaron.org/">L. David Baron</a>,
dbaron@6470 114 <a class="p-org org" href="http://www.mozilla.org/">Mozilla</a>
dbaron@6470 115 </dl>
dbaron@6470 116
dbaron@6470 117 <!--copyright-->
dbaron@6470 118
dbaron@6470 119 <hr title="Separator for header">
dbaron@6470 120 </div>
dbaron@6470 121
dbaron@6470 122 <h2 class="no-num no-toc" id="abstract">Abstract</h2>
dbaron@6470 123
dbaron@6470 124 <p>
dbaron@6470 125 <a href="http://www.w3.org/TR/CSS/">CSS</a> is
dbaron@6470 126 a language for describing
dbaron@6470 127 the rendering of structured documents (such as HTML and XML)
dbaron@6470 128 on screen, on paper, in speech, etc.
dbaron@6470 129 This module contains the features of CSS
dbaron@6470 130 relating to new mechanisms of overflow handling in visual media (e.g., screen or paper).
dbaron@6470 131 In interactive media,
dbaron@6470 132 it describes features that allow the overflow
dbaron@6470 133 from a fixed size container
dbaron@6470 134 to be handled by pagination (displaying one page at a time).
dbaron@6470 135 It also describes features, applying to all visual media,
dbaron@6470 136 that allow the contents of an element
dbaron@6470 137 to be spread across multiple containers,
dbaron@6470 138 allowing the contents to flow across multiple regions of a page
dbaron@6470 139 or to have different styles for different parts.
dbaron@6470 140 </p>
dbaron@6470 141
dbaron@6470 142 <h2 class="no-num no-toc" id="status">Status of this document</h2>
dbaron@6470 143
dbaron@6470 144 <!--status-->
dbaron@6470 145
dbaron@6470 146 <p>The following features are at risk: &hellip;
dbaron@6470 147
dbaron@6470 148 <h2 class="no-num no-toc" id="contents">
dbaron@6470 149 Table of contents</h2>
dbaron@6470 150
dbaron@6470 151 <!--toc-->
dbaron@6470 152
dbaron@6470 153 <h2 id="intro">
dbaron@6470 154 Introduction</h2>
dbaron@6470 155
dbaron@6470 156 <p>
dbaron@6470 157 In CSS Level 1 [[CSS1]], placing more content than would fit
dbaron@6470 158 inside an element with a specified size
dbaron@6470 159 was generally an authoring error.
dbaron@6470 160 Doing so caused the content to extend
dbaron@6470 161 outside the bounds of the element,
dbaron@6470 162 which would likely cause
dbaron@6470 163 that content to overlap with other elements.
dbaron@6470 164 </p>
dbaron@6470 165
dbaron@6470 166 <p>
dbaron@6470 167 CSS Level 2 [[CSS21]] introduced the 'overflow' property,
dbaron@6470 168 which allows authors to have overflow be handled by scrolling,
dbaron@6470 169 which means it is no longer an authoring error.
dbaron@6470 170 It also allows authors to specify
dbaron@6470 171 that overflow is handled by clipping,
dbaron@6470 172 which makes sense when the author's intent
dbaron@6470 173 is that the content not be shown.
dbaron@6470 174 </p>
dbaron@6470 175
dbaron@6470 176 <p>
dbaron@6470 177 However, scrolling is not the only way
dbaron@6470 178 to present large amounts of content,
dbaron@6470 179 and may even not be the optimal way.
dbaron@6470 180 After all, the codex replaced the scroll
dbaron@6470 181 as the common format for large written works
dbaron@6470 182 because of its advantages.
dbaron@6470 183 </p>
dbaron@6470 184
dbaron@6470 185 <p>
dbaron@6470 186 This specification introduces
dbaron@6470 187 a mechanism for Web pages to specify
dbaron@6470 188 that a region of a page should handle overflow
dbaron@6470 189 through pagination rather than through scrolling.
dbaron@6470 190 </p>
dbaron@6470 191
dbaron@6470 192 <p>
dbaron@6470 193 This specification also extends the concept of overflow
dbaron@6470 194 in another direction.
dbaron@6470 195 Instead of requiring that authors specify a single region
dbaron@6470 196 into which the content of an element must flow,
dbaron@6470 197 this specification allows authors to specify multiple regions,
dbaron@6470 198 each with their own dimensions and styles,
dbaron@6470 199 so that the content of the element can flow from one to the next,
dbaron@6470 200 using as many as needed to place the content without overflowing.
dbaron@6470 201 </p>
dbaron@6470 202
dbaron@6470 203 <p>
dbaron@6470 204 In both of these cases, implementations must
dbaron@6470 205 break the content in the block-progression dimension.
dbaron@6470 206 Implementations must do this is described
dbaron@6470 207 in the CSS Fragmentation Module [[!CSS3-BREAK]].
dbaron@6470 208 </p>
dbaron@6470 209
dbaron@6470 210
dbaron@6470 211 <h2 id="paginated-overflow">Paginated overflow</h2>
dbaron@6470 212
dbaron@6470 213 <p class="issue">overflow:paginate or overflow:pages (or paged-x, paged-y, paged-x-controls, paged-y-controls as css3-gcpm has?)</p>
dbaron@6470 214
dbaron@6470 215 <p class="issue">Ability to display N pages at once
dbaron@6470 216 rather than just one page at once?</p>
dbaron@6470 217
dbaron@6470 218 <h2 id="region-overflow">Region overflow</h2>
dbaron@6470 219
dbaron@6470 220 <p>
dbaron@6470 221 This section introduces and defines the meaning of
dbaron@6470 222 the new ''regions'' (<span class="issue">or ''repeat''?</span>)
dbaron@6470 223 value of the 'overflow' property.
dbaron@6470 224 </p>
dbaron@6470 225
dbaron@6470 226 <p>
dbaron@6470 227 When the computed value of 'overflow' for an element is ''regions'',
dbaron@6470 228 and implementations would otherwise have created a box for the element,
dbaron@6470 229 then implementations must create at least one box for that element.
dbaron@6470 230 Each box created for the element is called a <dfn>region box</dfn>
dbaron@6470 231 for that element.
dbaron@6470 232 (If an element with ''overflow: regions'' generates only one box,
dbaron@6470 233 that box is a <i>region box</i>.
dbaron@6470 234 However, if an element's computed 'overflow' is not ''regions'',
dbaron@6470 235 then its box is not a <i>region box</i>.)
dbaron@6470 236 Every <i>region box</i> is a fragmentation container,
dbaron@6471 237 and for each <i>region box</i> which ends with a fragmentation break,
dbaron@6471 238 (which could happen
dbaron@6471 239 because breakable content overflows in the block dimension
dbaron@6471 240 or because of a forced break),
dbaron@6470 241 there must be another <i>region box</i> created as a next sibling
dbaron@6470 242 of the previous one.
dbaron@6470 243 <span class="issue">Or is it as though it's a next sibling of
dbaron@6470 244 the element? Need to figure out exactly how this interacts with
dbaron@6470 245 other box-level fixup.</span>
dbaron@6470 246 (Breakable content might overflow in the box dimension either
dbaron@6470 247 because of a specified size on the region box
dbaron@6470 248 or because the region box is within a fragmentation context
dbaron@6470 249 in which it is being broken.
dbaron@6470 250 In other words, a single region box is never broken
dbaron@6470 251 across columns or pages;
dbaron@6470 252 the pieces that are in separate columns or pages
dbaron@6470 253 are always distinct region boxes.)
dbaron@6470 254 </p>
dbaron@6470 255
dbaron@6470 256 <p class="issue">
dbaron@6476 257 We also want ''::nth-region()'' pseudo-elements
dbaron@6470 258 to be able to apply to the pieces of an element
dbaron@6470 259 split within a fragmentation context.
dbaron@6470 260 Should we require that authors who want to use
dbaron@6476 261 ''::nth-region()'' in this way specify ''overflow:regions''
dbaron@6470 262 (even if they don't specify a constrained height),
dbaron@6470 263 or should it work automatically for all elements
dbaron@6470 264 even if they don't have ''overflow: regions''?
dbaron@6470 265 </p>
dbaron@6470 266
dbaron@6475 267 <div class="example">
dbaron@6477 268 <table class="source-demo-pair"><tr><td><pre>&lt;!DOCTYPE HTML&gt;
dbaron@6475 269 &lt;title&gt;Breaking content into
dbaron@6475 270 equal-sized cards&lt;/title&gt;
dbaron@6475 271 &lt;style&gt;
dbaron@6475 272 .in-cards {
dbaron@6475 273 overflow: regions;
dbaron@6475 274
dbaron@6475 275 width: 13em;
dbaron@6475 276 height: 8em;
dbaron@6475 277
dbaron@6475 278 padding: 4px;
dbaron@6475 279 border: medium solid blue;
dbaron@6475 280 margin: 6px;
dbaron@6475 281
dbaron@6475 282 font: medium/1.3 Times New
dbaron@6475 283 Roman, Times, serif;
dbaron@6475 284 }
dbaron@6475 285 &lt;/style&gt;
dbaron@6475 286 &lt;div class="in-cards"&gt;
dbaron@6475 287 In this example, the text in the div
dbaron@6475 288 is broken into a series of cards.
dbaron@6475 289 These cards all have the same style.
dbaron@6475 290 The presence of enough content to
dbaron@6475 291 overflow one of the cards causes
dbaron@6475 292 another one to be created. The second
dbaron@6475 293 card is created just like it's the
dbaron@6475 294 next sibling of the first.
dbaron@6477 295 &lt;/div&gt;</pre></td><td>
dbaron@6475 296 <div class="in-cards-demo">In this example, the text in the<br>div is broken into a series of<br>cards. These cards all have the<br>same style. The presence of<br>enough content to overflow<br>one of the cards causes another</div>
dbaron@6475 297 <div class="in-cards-demo">one to be created. The second<br>card is created just like it's the<br>next sibling of the first.</div>
dbaron@6475 298 </td></tr></table>
dbaron@6475 299 </div>
dbaron@6475 300
dbaron@6470 301 <h3 id="region-styling">Region styling</h3>
dbaron@6470 302
dbaron@6470 303 <h4 id="region-pseudo-element">The ::nth-region() pseudo-element</h4>
dbaron@6470 304
dbaron@6470 305 <p>
dbaron@6470 306 The ::nth-region() pseudo-element is a pseudo-element
dbaron@6470 307 that describes some of the region boxes generated by an element.
dbaron@6470 308 The argument to the pseudo-element takes the same syntax
dbaron@6470 309 as the argument to the :nth-child() pseudo-class
dbaron@6470 310 defined in [[!SELECT]], and has the same meaning
dbaron@6470 311 except that the number is relative to
dbaron@6470 312 <i>region boxes</i> generated by the element
dbaron@6470 313 instead of siblings of the element.
dbaron@6470 314 </p>
dbaron@6470 315
dbaron@6470 316 <p class="issue">
dbaron@6470 317 If we go with a name for the 'overflow' value other than
dbaron@6470 318 ''overflow: regions'',
dbaron@6470 319 then we should probably rename this pseudo-element,
dbaron@6470 320 perhaps to ::nth-piece(), ::nth-part(), or ::nth-instance().
dbaron@6470 321 </p>
dbaron@6470 322
dbaron@6470 323 <p class="note">
dbaron@6470 324 Selectors that allow addressing regions
dbaron@6470 325 by counting from the end rather than the start
dbaron@6470 326 are intentionally not provided.
dbaron@6470 327 Such selectors would interfere with determining
dbaron@6470 328 the number of regions.
dbaron@6470 329 </p>
dbaron@6470 330
dbaron@6470 331 <h4 id="style-of-regions">Styling of regions</h4>
dbaron@6470 332
dbaron@6470 333 <p class="issue">
dbaron@6470 334 Should this apply to region overflow only,
dbaron@6470 335 or also to paginated overflow?
dbaron@6470 336 (If it applies,
dbaron@6470 337 then stricter property restrictions would be needed
dbaron@6470 338 for paginated overflow.)
dbaron@6470 339 </p>
dbaron@6470 340
dbaron@6470 341 <p>
dbaron@6470 342 In the absence of rules with ''::nth-region()'' pseudo-elements,
dbaron@6470 343 the computed style for each <i>region box</i>
dbaron@6470 344 is the computed style for the element
dbaron@6470 345 for which the <i>region box</i> was created.
dbaron@6470 346 However, the style for a <i>region box</i> is also influenced
dbaron@6470 347 by rules whose selector's <i>subject</i> [[!SELECT]]
dbaron@6470 348 has an ''::nth-region()'' pseudo-element,
dbaron@6470 349 if the 1-based number of the region box matches
dbaron@6470 350 that ''::nth-region()'' pseudo-element
dbaron@6470 351 and the selector (excluding the ''::nth-region()'' pseudo-element)
dbaron@6470 352 matches the element generating the regions.
dbaron@6470 353 </p>
dbaron@6470 354
dbaron@6477 355 <div class="example">
dbaron@6477 356 <table class="source-demo-pair"><tr><td><pre>&lt;!DOCTYPE HTML&gt;
dbaron@6477 357 &lt;style&gt;
dbaron@6477 358 .bouncy-columns {
dbaron@6477 359 overflow: regions;
dbaron@6477 360 width: 6em;
dbaron@6477 361 height: 10em;
dbaron@6477 362 float: left;
dbaron@6477 363 margin: 1em;
dbaron@6477 364 font: medium/1.25 Times New
dbaron@6477 365 Roman, Times, serif;
dbaron@6477 366 }
dbaron@6477 367 .bouncy-columns::nth-region(1) {
dbaron@6477 368 background: aqua; color: black;
dbaron@6477 369 transform: rotate(-3deg);
dbaron@6477 370 }
dbaron@6477 371 .bouncy-columns::nth-region(2) {
dbaron@6477 372 background: yellow; color: black;
dbaron@6477 373 transform: rotate(3deg);
dbaron@6477 374 }
dbaron@6477 375 &lt;/style&gt;
dbaron@6477 376 &lt;div class="bouncy-columns"&gt;
dbaron@6477 377 <i>...</i>
dbaron@6477 378 &lt;/div&gt;</pre></td><td>
dbaron@6477 379 <div class="bouncy-columns-demo one">In this<br>example, the<br>text in the div<br>is broken into<br>a series of<br>columns. The<br>author<br>probably</div>
dbaron@6477 380 <div class="bouncy-columns-demo two">intended the<br>text to fill two<br>columns. But<br>if it happens to<br>fill three<br>columns, the<br>third column is<br>still created. It</div>
dbaron@6477 381 <div class="bouncy-columns-demo">just doesn't<br>have any<br>region-specific<br>styling because<br>the author<br>didn't give it<br>any.</div>
dbaron@6477 382 </td></tr></table>
dbaron@6477 383 </div>
dbaron@6477 384
dbaron@6470 385 <p>
dbaron@6476 386 Styling an ''::nth-region()'' pseudo-element with the 'overflow'
dbaron@6470 387 property has no effect;
dbaron@6470 388 the computed value of 'overflow' for the region box
dbaron@6470 389 remains the same as the computed value of overflow for the element.
dbaron@6470 390 </p>
dbaron@6470 391
dbaron@6470 392 <p>
dbaron@6470 393 Specifying ''display: none'' for a region box causes
dbaron@6470 394 the region box with that index not to be generated.
dbaron@6470 395 However, in terms of the indices
dbaron@6476 396 used for matching ''::nth-region()'' pseudo-elements
dbaron@6470 397 of later region boxes,
dbaron@6470 398 it still counts as though it was generated.
dbaron@6470 399 However, since it is not generated, it does not contain any content.
dbaron@6470 400 </p>
dbaron@6470 401
dbaron@6470 402 <p class="issue">
dbaron@6470 403 Would it make more sense to forbid ''display:none''?
dbaron@6470 404 Or perhaps to forbid 'display', 'position', 'float',
dbaron@6470 405 and similar (in addition to 'overflow')?
dbaron@6470 406 </p>
dbaron@6470 407
dbaron@6470 408 <p>
dbaron@6470 409 To match the model for other pseudo-elements
dbaron@6470 410 where the pseudo-elements live inside their corresponding element,
dbaron@6470 411 declarations in ''::nth-region()'' pseudo-elements override
dbaron@6470 412 declarations in rules without the pseudo-element.
dbaron@6470 413 The relative priority within such declarations is determined
dbaron@6470 414 by normal cascading order (see [[!CSS21]]).
dbaron@6470 415 </p>
dbaron@6470 416
dbaron@6470 417 <p>
dbaron@6470 418 Styles specified on ''::nth-region()'' pseudo-elements
dbaron@6470 419 do affect inheritance to content within the <i>region box</i>.
dbaron@6470 420 In other words, the content within the <i>region box</i> must
dbaron@6470 421 inherit from the region box's style (i.e., the pseudo-element style)
dbaron@6470 422 rather than directly from the element.
dbaron@6470 423 This means that elements split between region boxes may
dbaron@6470 424 have different styles for different parts of the element.
dbaron@6470 425 </p>
dbaron@6470 426
dbaron@6472 427 <p class="issue">
dbaron@6472 428 This inheritance rule allows specifying styles indirectly
dbaron@6472 429 (by using explicit ''inherit'' or using default inheritance
dbaron@6472 430 on properties that don't apply to '':first-letter'')
dbaron@6472 431 that can't be specified directly
dbaron@6472 432 (based on the rules in the next section).
dbaron@6472 433 This is a problem.
dbaron@6472 434 The restrictions that apply to styling inside regions
dbaron@6472 435 should also apply to inheritance from regions.
dbaron@6472 436 </p>
dbaron@6472 437
dbaron@6480 438 <div class="example">
dbaron@6480 439 <table class="source-demo-pair"><tr><td><pre>&lt;!DOCTYPE HTML&gt;
dbaron@6480 440 &lt;style&gt;
dbaron@6480 441 .article {
dbaron@6480 442 overflow: regions;
dbaron@6480 443 }
dbaron@6480 444 .article::nth-region(1) {
dbaron@6480 445 font-size: 1.5em;
dbaron@6480 446 margin-bottom: 1em;
dbaron@6480 447 height: 4em;
dbaron@6480 448 }
dbaron@6480 449 .article::nth-region(n+2) {
dbaron@6480 450 /* 2 and up */
dbaron@6480 451 margin-left: 5em;
dbaron@6480 452 margin-right: 2em;
dbaron@6480 453 }
dbaron@6480 454 &lt;/style&gt;
dbaron@6480 455 &lt;div class="article"&gt;
dbaron@6480 456 The &lt;code&gt;font-size&lt;/code&gt; property<i>...</i>
dbaron@6480 457 &lt;/div&gt;</pre></td><td>
dbaron@6480 458 <div class="article-font-inherit-demo one">The <code>font-size</code> property<br>specified on the region<br>is inherited into the</div>
dbaron@6480 459 <div class="article-font-inherit-demo two">descendants of the region.<br>This means that inherited<br>properties can be used<br>reliably on a region, as in<br>this example.</div>
dbaron@6480 460 </td></tr></table>
dbaron@6480 461 </div>
dbaron@6478 462
dbaron@6470 463 <h4 id="style-in-regions">Styling inside regions</h4>
dbaron@6470 464
dbaron@6470 465 <p class="issue">
dbaron@6470 466 Should this apply to region overflow only,
dbaron@6470 467 or also to paginated overflow,
dbaron@6470 468 or even to pagination across pages?
dbaron@6470 469 </p>
dbaron@6470 470
dbaron@6470 471 <p>
dbaron@6476 472 The ''::nth-region()'' pseudo-element
dbaron@6470 473 can also be used to style
dbaron@6470 474 content inside of a <i>region box</i>.
dbaron@6470 475 Unlike the ''::first-line'' and ''::first-letter'' pseudo-elements,
dbaron@6476 476 the ''::nth-region()'' pseudo-element can be applied
dbaron@6470 477 to parts of the selector other than the subject:
dbaron@6470 478 in particular, it can match ancestors of the subject.
dbaron@6470 479 However, the only CSS properties applied
dbaron@6470 480 by rules with such selectors
dbaron@6470 481 are those that apply
dbaron@6470 482 to the ''::first-letter'' pseudo-element.
dbaron@6470 483 </p>
dbaron@6470 484
dbaron@6470 485 <p>
dbaron@6470 486 To be more precise,
dbaron@6470 487 when a rule's selector has ''::nth-region()'' pseudo-elements
dbaron@6470 488 attached to parts of the selector other than the subject,
dbaron@6470 489 the declarations in that rule apply to
dbaron@6470 490 a fragment (or pseudo-element thereof) when:
dbaron@6470 491 </p>
dbaron@6470 492 <ol>
dbaron@6470 493 <li>
dbaron@6470 494 the declarations are for properties that apply to the
dbaron@6470 495 ''::first-letter'' pseudo-element,
dbaron@6470 496 </li>
dbaron@6470 497 <li>
dbaron@6470 498 the declarations would apply to
dbaron@6470 499 that fragment (or pseudo-element thereof)
dbaron@6470 500 had those ''::nth-region()'' pseudo-elements been removed,
dbaron@6470 501 with a particular association between
dbaron@6470 502 each sequence of simple selectors and the element it matched,
dbaron@6470 503 and
dbaron@6470 504 </li>
dbaron@6470 505 <li>
dbaron@6470 506 for each removed ''::nth-region()'' pseudo-element,
dbaron@6470 507 the fragment lives within a <i>region box</i>
dbaron@6470 508 of the element associated in that association
dbaron@6470 509 with the selector that the pseudo-element was attached to,
dbaron@6470 510 and whose index matches the pseudo-element.
dbaron@6470 511 </li>
dbaron@6470 512 </ol>
dbaron@6470 513
dbaron@6478 514 <p class="issue">
dbaron@6478 515 TODO: ADD EXAMPLE HERE.
dbaron@6478 516 </p>
dbaron@6478 517
dbaron@6470 518 <h3 id="max-lines">The 'max-lines' property</h3>
dbaron@6470 519
dbaron@6470 520 <p>
dbaron@6470 521 Authors may wish to style the opening lines of an element
dbaron@6470 522 with different styles
dbaron@6470 523 by putting those opening lines in a separate region.
dbaron@6470 524 However, since it may be difficult to predict the exact height
dbaron@6470 525 occupied by those lines
dbaron@6470 526 in order to restrict the first region to that height,
dbaron@6470 527 this specification introduces a 'max-lines' property
dbaron@6470 528 that forces a region to break
dbaron@6470 529 after a specified number of lines.
dbaron@6470 530 This forces a break after the given number of lines
dbaron@6470 531 contained within the element or its descendants,
dbaron@6470 532 as long as those lines are in the same block formatting context.
dbaron@6470 533 </p>
dbaron@6470 534
dbaron@6470 535 <table class=propdef>
dbaron@6470 536 <tr>
dbaron@6470 537 <th>Name:
dbaron@6470 538 <td><dfn>max-lines</dfn>
dbaron@6470 539 <tr>
dbaron@6470 540 <th><a href="#values">Value</a>:
dbaron@6470 541 <td>none | &lt;integer&gt;
dbaron@6470 542 <tr>
dbaron@6470 543 <th>Initial:
dbaron@6470 544 <td>none
dbaron@6470 545 <tr>
dbaron@6470 546 <th>Applies to:
dbaron@6470 547 <td>region boxes
dbaron@6470 548 <tr>
dbaron@6470 549 <th>Inherited:
dbaron@6470 550 <td>no
dbaron@6470 551 <tr>
dbaron@6470 552 <th>Percentages:
dbaron@6470 553 <td>N/A
dbaron@6470 554 <tr>
dbaron@6470 555 <th>Media:
dbaron@6470 556 <td>visual
dbaron@6470 557 <tr>
dbaron@6470 558 <th>Computed&nbsp;value:
dbaron@6470 559 <td>specified value
dbaron@6470 560 <tr>
dbaron@6470 561 <th>Animatable:
dbaron@6470 562 <td>as <a href="http://www.w3.org/TR/css3-transitions/#animatable-types">integer</a>
dbaron@6470 563 <tr>
dbaron@6470 564 <th>Canonical order:
dbaron@6470 565 <td><abbr title="follows order of property value definition">per grammar</abbr>
dbaron@6470 566 </table>
dbaron@6470 567
dbaron@6470 568 <dl>
dbaron@6470 569 <dt>none
dbaron@6470 570 <dd>
dbaron@6470 571 <p>
dbaron@6470 572 Breaks occur only as specified elsewhere.
dbaron@6470 573 </p>
dbaron@6470 574 </dd>
dbaron@6470 575
dbaron@6470 576 <dt>&lt;integer&gt;
dbaron@6470 577 <dd>
dbaron@6470 578 <p>
dbaron@6470 579 In addition to any breaks specified elsewhere,
dbaron@6470 580 a break is forced before any line that would exceed
dbaron@6470 581 the given number of lines
dbaron@6470 582 being placed inside the element
dbaron@6470 583 (excluding lines that are in
dbaron@6470 584 a different block formatting context from
dbaron@6470 585 the block formatting context to which
dbaron@6470 586 an unstyled child of the element would belong).
dbaron@6470 587 </p>
dbaron@6470 588
dbaron@6470 589 <p class="issue">
dbaron@6470 590 If there are multiple boundaries between this line
dbaron@6470 591 and the previous, where exactly (in terms of element
dbaron@6470 592 boundaries) is the break forced?
dbaron@6470 593 </p>
dbaron@6470 594
dbaron@6470 595 <p>
dbaron@6470 596 Only positive integers are accepted.
dbaron@6470 597 Zero or negative integers are a parse error.
dbaron@6470 598 </p>
dbaron@6470 599 </dd>
dbaron@6470 600 </dl>
dbaron@6470 601
dbaron@6470 602 <p class="issue">Should this apply to regions overflow only, or also
dbaron@6470 603 to pagination?</p>
dbaron@6470 604
dbaron@6479 605 <div class="example">
dbaron@6479 606 <table class="source-demo-pair"><tr><td><pre>&lt;!DOCTYPE HTML&gt;
dbaron@6479 607 &lt;style&gt;
dbaron@6479 608 .article {
dbaron@6479 609 overflow: regions;
dbaron@6479 610 }
dbaron@6479 611 .article::first-letter {
dbaron@6479 612 font-size: 2em;
dbaron@6479 613 line-height: 0.9;
dbaron@6479 614 }
dbaron@6479 615 .article::nth-region(1) {
dbaron@6479 616 font-size: 1.5em;
dbaron@6479 617 max-lines: 3;
dbaron@6479 618 }
dbaron@6479 619 .article::nth-region(n+2) {
dbaron@6479 620 /* 2 and up */
dbaron@6479 621 column-count: 2;
dbaron@6479 622 }
dbaron@6479 623 &lt;/style&gt;
dbaron@6479 624 &lt;div class="article"&gt;
dbaron@6479 625 <i>...</i>
dbaron@6479 626 &lt;/div&gt;</pre></td><td>
dbaron@6479 627 <div class="article-max-lines-demo one">The max-lines property allows<br>authors to use a larger font for the first<br>few lines of an article. Without the</div>
dbaron@6479 628 <div class="article-max-lines-demo two">max-lines property, authors<br>might have to use the<br>'height' property instead, but<br>that would leave a slight gap<br>if the author miscalculated<br>how much height a given<br>number of lines would<br>occupy (which might be</div>
dbaron@6479 629 <div class="article-max-lines-demo three">particularly hard if the author<br>didn't know what text would<br>be filling the space, exactly<br>what font would be used, or<br>exactly which platform's font<br>rendering would be used to<br>display the font).</div>
dbaron@6479 630 </td></tr></table>
dbaron@6479 631 </div>
dbaron@6478 632
dbaron@6470 633 <h2 id="conformance">
dbaron@6470 634 Conformance</h2>
dbaron@6470 635
dbaron@6470 636 <h3 id="placement">
dbaron@6470 637 Module interactions</h3>
dbaron@6470 638
dbaron@6470 639 <p>This module extends the 'overflow'
dbaron@6470 640 feature defined in [[CSS21]] section 11.1.1. It defines additional
dbaron@6470 641 overflow handling mechanisms that implementations must implement as
dbaron@6470 642 described in this module in order to conform to this module.</p>
dbaron@6470 643
dbaron@6470 644 <p>No properties in this module apply to the <code>::first-line</code> or
dbaron@6470 645 <code>::first-letter</code> pseudo-elements.</p>
dbaron@6470 646
dbaron@6470 647 <h3 id="values">
dbaron@6470 648 Values</h3>
dbaron@6470 649
dbaron@6470 650 <p>This specification follows the
dbaron@6470 651 <a href="http://www.w3.org/TR/CSS21/about.html#property-defs">CSS property
dbaron@6470 652 definition conventions</a> from [[!CSS21]]. Value types not defined in
dbaron@6470 653 this specification are defined in CSS Level 2 Revision 1 [[!CSS21]].
dbaron@6470 654 Other CSS modules may expand the definitions of these value types: for
dbaron@6470 655 example [[CSS3COLOR]], when combined with this module, expands the
dbaron@6470 656 definition of the &lt;color&gt; value type as used in this specification.</p>
dbaron@6470 657
dbaron@6470 658 <p>In addition to the property-specific values listed in their definitions,
dbaron@6470 659 all properties defined in this specification also accept the
dbaron@6470 660 <a href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
dbaron@6470 661 keyword as their property value. For readability it has not been repeated
dbaron@6470 662 explicitly.
dbaron@6470 663
dbaron@6470 664
dbaron@6470 665 <h3 id="conventions">
dbaron@6470 666 Document conventions</h3>
dbaron@6470 667
dbaron@6470 668 <p>Conformance requirements are expressed with a combination of
dbaron@6470 669 descriptive assertions and RFC 2119 terminology. The key words “MUST”,
dbaron@6470 670 “MUST NOT”, “REQUIRED”, “SHALL”, “SHALL NOT”, “SHOULD”, “SHOULD NOT”,
dbaron@6470 671 “RECOMMENDED”, “MAY”, and “OPTIONAL” in the normative parts of this
dbaron@6470 672 document are to be interpreted as described in RFC 2119.
dbaron@6470 673 However, for readability, these words do not appear in all uppercase
dbaron@6470 674 letters in this specification.
dbaron@6470 675
dbaron@6470 676 <p>All of the text of this specification is normative except sections
dbaron@6470 677 explicitly marked as non-normative, examples, and notes. [[!RFC2119]]</p>
dbaron@6470 678
dbaron@6470 679 <p>Examples in this specification are introduced with the words “for example”
dbaron@6470 680 or are set apart from the normative text with <code>class="example"</code>,
dbaron@6470 681 like this:
dbaron@6470 682
dbaron@6470 683 <div class="example">
dbaron@6470 684 <p>This is an example of an informative example.</p>
dbaron@6470 685 </div>
dbaron@6470 686
dbaron@6470 687 <p>Informative notes begin with the word “Note” and are set apart from the
dbaron@6470 688 normative text with <code>class="note"</code>, like this:
dbaron@6470 689
dbaron@6470 690 <p class="note">Note, this is an informative note.</p>
dbaron@6470 691
dbaron@6470 692 <h3 id="conformance-classes">
dbaron@6470 693 Conformance classes</h3>
dbaron@6470 694
dbaron@6474 695 <p>Conformance to CSS Region Styling Module Level 3
dbaron@6470 696 is defined for three conformance classes:
dbaron@6470 697 <dl>
dbaron@6470 698 <dt><dfn title="style sheet!!as conformance class">style sheet</dfn>
dbaron@6470 699 <dd>A <a href="http://www.w3.org/TR/CSS21/conform.html#style-sheet">CSS
dbaron@6470 700 style sheet</a>.
dbaron@6470 701 <dt><dfn>renderer</dfn></dt>
dbaron@6470 702 <dd>A <a href="http://www.w3.org/TR/CSS21/conform.html#user-agent">UA</a>
dbaron@6470 703 that interprets the semantics of a style sheet and renders
dbaron@6470 704 documents that use them.
dbaron@6470 705 <dt><dfn id="authoring-tool">authoring tool</dfn></dt>
dbaron@6470 706 <dd>A <a href="http://www.w3.org/TR/CSS21/conform.html#user-agent">UA</a>
dbaron@6470 707 that writes a style sheet.
dbaron@6470 708 </dl>
dbaron@6470 709
dbaron@6474 710 <p>A style sheet is conformant to CSS Region Styling Module Level 3
dbaron@6470 711 if all of its statements that use syntax defined in this module are valid
dbaron@6470 712 according to the generic CSS grammar and the individual grammars of each
dbaron@6470 713 feature defined in this module.
dbaron@6470 714
dbaron@6474 715 <p>A renderer is conformant to CSS Region Styling Module Level 3
dbaron@6470 716 if, in addition to interpreting the style sheet as defined by the
dbaron@6470 717 appropriate specifications, it supports all the features defined
dbaron@6474 718 by CSS Region Styling Module Level 3 by parsing them correctly
dbaron@6470 719 and rendering the document accordingly. However, the inability of a
dbaron@6470 720 UA to correctly render a document due to limitations of the device
dbaron@6470 721 does not make the UA non-conformant. (For example, a UA is not
dbaron@6470 722 required to render color on a monochrome monitor.)
dbaron@6470 723
dbaron@6474 724 <p>An authoring tool is conformant to CSS Region Styling Module Level 3
dbaron@6470 725 if it writes style sheets that are syntactically correct according to the
dbaron@6470 726 generic CSS grammar and the individual grammars of each feature in
dbaron@6470 727 this module, and meet all other conformance requirements of style sheets
dbaron@6470 728 as described in this module.
dbaron@6470 729
dbaron@6470 730 <h3 id="partial">
dbaron@6470 731 Partial implementations</h3>
dbaron@6470 732
dbaron@6470 733 <p>So that authors can exploit the forward-compatible parsing rules to
dbaron@6470 734 assign fallback values, CSS renderers <strong>must</strong>
dbaron@6470 735 treat as invalid (and <a href="http://www.w3.org/TR/CSS21/conform.html#ignore">ignore
dbaron@6470 736 as appropriate</a>) any at-rules, properties, property values, keywords,
dbaron@6470 737 and other syntactic constructs for which they have no usable level of
dbaron@6470 738 support. In particular, user agents <strong>must not</strong> selectively
dbaron@6470 739 ignore unsupported component values and honor supported values in a single
dbaron@6470 740 multi-value property declaration: if any value is considered invalid
dbaron@6470 741 (as unsupported values must be), CSS requires that the entire declaration
dbaron@6470 742 be ignored.</p>
dbaron@6470 743
dbaron@6470 744 <h3 id="experimental">
dbaron@6470 745 Experimental implementations</h3>
dbaron@6470 746
dbaron@6470 747 <p>To avoid clashes with future CSS features, the CSS2.1 specification
dbaron@6470 748 reserves a <a href="http://www.w3.org/TR/CSS21/syndata.html#vendor-keywords">prefixed
dbaron@6470 749 syntax</a> for proprietary and experimental extensions to CSS.
dbaron@6470 750
dbaron@6470 751 <p>Prior to a specification reaching the Candidate Recommendation stage
dbaron@6470 752 in the W3C process, all implementations of a CSS feature are considered
dbaron@6470 753 experimental. The CSS Working Group recommends that implementations
dbaron@6470 754 use a vendor-prefixed syntax for such features, including those in
dbaron@6470 755 W3C Working Drafts. This avoids incompatibilities with future changes
dbaron@6470 756 in the draft.
dbaron@6470 757 </p>
dbaron@6470 758
dbaron@6470 759 <h3 id="testing">
dbaron@6470 760 Non-experimental implementations</h3>
dbaron@6470 761
dbaron@6470 762 <p>Once a specification reaches the Candidate Recommendation stage,
dbaron@6470 763 non-experimental implementations are possible, and implementors should
dbaron@6470 764 release an unprefixed implementation of any CR-level feature they
dbaron@6470 765 can demonstrate to be correctly implemented according to spec.
dbaron@6470 766
dbaron@6470 767 <p>To establish and maintain the interoperability of CSS across
dbaron@6470 768 implementations, the CSS Working Group requests that non-experimental
dbaron@6470 769 CSS renderers submit an implementation report (and, if necessary, the
dbaron@6470 770 testcases used for that implementation report) to the W3C before
dbaron@6470 771 releasing an unprefixed implementation of any CSS features. Testcases
dbaron@6470 772 submitted to W3C are subject to review and correction by the CSS
dbaron@6470 773 Working Group.
dbaron@6470 774
dbaron@6470 775 <p>Further information on submitting testcases and implementation reports
dbaron@6470 776 can be found from on the CSS Working Group's website at
dbaron@6470 777 <a href="http://www.w3.org/Style/CSS/Test/">http://www.w3.org/Style/CSS/Test/</a>.
dbaron@6470 778 Questions should be directed to the
dbaron@6470 779 <a href="http://lists.w3.org/Archives/Public/public-css-testsuite">public-css-testsuite@w3.org</a>
dbaron@6470 780 mailing list.
dbaron@6470 781
dbaron@6470 782 <h3 id="cr-exit-criteria">
dbaron@6470 783 CR exit criteria</h3>
dbaron@6470 784
dbaron@6470 785 <p class=issue>[Change or remove the following CR exit criteria if
dbaron@6470 786 the spec is not a module, but, e.g., a Note or a profile. This text was <a
dbaron@6470 787 href="http://www.w3.org/Style/CSS/Tracker/actions/44"> decided on 2008-06-04.</a>]</p>
dbaron@6470 788
dbaron@6470 789 <p>
dbaron@6470 790 For this specification to be advanced to Proposed Recommendation,
dbaron@6470 791 there must be at least two independent, interoperable implementations
dbaron@6470 792 of each feature. Each feature may be implemented by a different set of
dbaron@6470 793 products, there is no requirement that all features be implemented by
dbaron@6470 794 a single product. For the purposes of this criterion, we define the
dbaron@6470 795 following terms:
dbaron@6470 796
dbaron@6470 797 <dl>
dbaron@6470 798 <dt>independent <dd>each implementation must be developed by a
dbaron@6470 799 different party and cannot share, reuse, or derive from code
dbaron@6470 800 used by another qualifying implementation. Sections of code that
dbaron@6470 801 have no bearing on the implementation of this specification are
dbaron@6470 802 exempt from this requirement.
dbaron@6470 803
dbaron@6470 804 <dt>interoperable <dd>passing the respective test case(s) in the
dbaron@6470 805 official CSS test suite, or, if the implementation is not a Web
dbaron@6470 806 browser, an equivalent test. Every relevant test in the test
dbaron@6470 807 suite should have an equivalent test created if such a user
dbaron@6470 808 agent (UA) is to be used to claim interoperability. In addition
dbaron@6470 809 if such a UA is to be used to claim interoperability, then there
dbaron@6470 810 must one or more additional UAs which can also pass those
dbaron@6470 811 equivalent tests in the same way for the purpose of
dbaron@6470 812 interoperability. The equivalent tests must be made publicly
dbaron@6470 813 available for the purposes of peer review.
dbaron@6470 814
dbaron@6470 815 <dt>implementation <dd>a user agent which:
dbaron@6470 816
dbaron@6470 817 <ol class=inline>
dbaron@6470 818 <li>implements the specification.
dbaron@6470 819
dbaron@6470 820 <li>is available to the general public. The implementation may
dbaron@6470 821 be a shipping product or other publicly available version
dbaron@6470 822 (i.e., beta version, preview release, or “nightly build”).
dbaron@6470 823 Non-shipping product releases must have implemented the
dbaron@6470 824 feature(s) for a period of at least one month in order to
dbaron@6470 825 demonstrate stability.
dbaron@6470 826
dbaron@6470 827 <li>is not experimental (i.e., a version specifically designed
dbaron@6470 828 to pass the test suite and is not intended for normal usage
dbaron@6470 829 going forward).
dbaron@6470 830 </ol>
dbaron@6470 831 </dl>
dbaron@6470 832
dbaron@6470 833 <p>The specification will remain Candidate Recommendation for at least
dbaron@6470 834 six months.
dbaron@6470 835
dbaron@6470 836 <h2 class=no-num id="acknowledgments">
dbaron@6470 837 Acknowledgments</h2>
dbaron@6470 838
dbaron@6470 839 <p>
dbaron@6470 840 Thanks especially to the feedback from
dbaron@6470 841 H&aring;kon Wium Lie,
dbaron@6470 842 Florian Rivoal,
dbaron@6473 843 Alan Stearns,
dbaron@6470 844 and all the rest of the
dbaron@6470 845 <a href="http://lists.w3.org/Archives/Public/www-style/">www-style</a> community.
dbaron@6470 846 </p>
dbaron@6470 847
dbaron@6470 848 <h2 class=no-num id="references">
dbaron@6470 849 References</h2>
dbaron@6470 850
dbaron@6470 851 <h3 class="no-num" id="normative-references">
dbaron@6470 852 Normative references</h3>
dbaron@6470 853 <!--normative-->
dbaron@6470 854
dbaron@6470 855 <h3 class="no-num" id="other-references">
dbaron@6470 856 Other references</h3>
dbaron@6470 857 <!--informative-->
dbaron@6470 858
dbaron@6470 859 <h2 class="no-num" id="index">
dbaron@6470 860 Index</h2>
dbaron@6470 861 <!--index-->
dbaron@6470 862
dbaron@6470 863 <h2 class="no-num" id="property-index">
dbaron@6470 864 Property index</h2>
dbaron@6470 865 <!-- properties -->
dbaron@6470 866
dbaron@6470 867 </body>
dbaron@6470 868 </html>
dbaron@6470 869 <!-- Keep this comment at the end of the file
dbaron@6470 870 Local variables:
dbaron@6470 871 mode: sgml
dbaron@6470 872 sgml-declaration:"~/SGML/HTML4.decl"
dbaron@6470 873 sgml-default-doctype-name:"html"
dbaron@6470 874 sgml-minimize-attributes:t
dbaron@6470 875 sgml-nofill-elements:("pre" "style" "br")
dbaron@6470 876 sgml-live-element-indicator:t
dbaron@6470 877 sgml-omittag:nil
dbaron@6470 878 sgml-shorttag:nil
dbaron@6470 879 sgml-namecase-general:t
dbaron@6470 880 sgml-general-insert-case:lower
dbaron@6470 881 sgml-always-quote-attributes:t
dbaron@6470 882 sgml-indent-step:nil
dbaron@6470 883 sgml-indent-data:t
dbaron@6470 884 sgml-parent-document:nil
dbaron@6470 885 sgml-exposed-tags:nil
dbaron@6470 886 sgml-local-catalogs:nil
dbaron@6470 887 sgml-local-ecat-files:nil
dbaron@6470 888 End:
dbaron@6470 889 -->
dbaron@6470 890

mercurial