2 3.0 2.0 1.3 2.0 1.5 1.0 7.0 6.0 5.5
Full Full Full Full Full Full Full Full Full Full
Internet Explorer for Windows versions up to and including 5.5 will indent text in
inline elements that have been assigned a width value other than auto.
Internet Explorer for Windows versions up to and including 7 don??™t support the
value inherit.
Opera browsers will ignore ???extreme??? values. So, when you??™re using text-indent
to hide text, don??™t go beyond -999em or -9999px.
Other Relevant Stuff
direction (p. 343)
specifies the writing direction
text-transform
text-transform: { capitalize | lowercase | none |
uppercase | inherit } ;
This property controls if and how an
element??™s text content is capitalized.
Value
capitalize transforms the first
character in each word
to uppercase; all other
characters remain
Example
These style rules make h1 headings use
only uppercase letters, while the first letter
of each word in h2 headings will be
uppercased:
h1 {
text-transform: uppercase;
}
h2 {
text-transform: capitalize;
}
SPEC
version initial inherited
CSS1, 2 none YES
BROWSER SUPPORT
Op9.
Pages:
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497