HTML and CSS Reference
In-Depth Information
(continued)
font-feature-settings
Standard CSS3 properties and values
font-feature-settings:
"frac";
font-variant-numeric:
diagonal-fractions;
font-feature-settings:
"hist";
font-variant-alternates:
historical-forms;
font-feature-settings:
"ss01";
font-variant-alternates:
styleset(1);
Text columns
Columns in printed media, such as newspa-
pers and magazines, make text easier to read
by keeping the line length to an optimal 10-
15 words. With CSS2 , the only way to create
columns of text is to split the content among
multiple elements and then position them on
the page. This causes issues when updating
the content, because you have to make sure
it remains balanced, and when reading it,
because nothing in the markup indicates that
the two elements share a common text
source. CSS3 adds the ability to render any
element across multiple columns, solving
both issues. You'll learn how in this section.
Standard
Prefixed
-
1.0
-
1.5
10.0
-
11.10
-
-
3.0
Column count and width
Here's a simple page with a couple
of paragraphs of text:
<body>
<p>I never am really
satisfied...</p>
<p>In almost every
computation...</p>
</body>
 
Search WWH ::




Custom Search