This is an experimental technology
Because this technology's specification has not stabilized, check the compatibility table for usage in various browsers. Also note that the syntax and behavior of an experimental technology is subject to change in future versions of browsers as the specification changes.
The initial-letter CSS property specifies styling for dropped, raised, and sunken initial letters.
| Initial value | normal |
|---|---|
| Applies to |
::first-letter pseudo-elements and inline-level first child of a block container |
| Inherited | no |
| Media | visual |
| Computed value | as specified |
| Animation type | discrete |
| Canonical order | the unique non-ambiguous order defined by the formal grammar |
/* Keyword values */
initial-letter: normal;
/* Numeric values */
initial-letter: 1.5; /* Initial letter occupies 1.5 lines */
initial-letter: 3.0; /* Initial letter occupies 3 lines */
initial-letter: 3.0 2; /* Initial letter occupies 3 lines and
sinks 2 lines */
/* Global values */
initial-letter: inherit;
initial-letter: initial;
initial-letter: unset;
normal<number><integer>normal | [ <number> <integer>? ]
.normal {
initial-letter: normal;
}
.onefive {
initial-letter: 1.5;
}
.three {
initial-letter: 3.0;
}
<p class="normal">Initial letter is normal</p> <p class="onefive">Initial letter occupies 1.5 lines</p> <p class="three">Initial letter occupies 3 lines</p>
| Specification | Status | Comment |
|---|---|---|
| CSS Inline Layout The definition of 'initial-letter' in that specification. | Working Draft | Initial definition |
| Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
|---|---|---|---|---|---|
| Basic support | No support | No support[1] | No support | No support | AppleWebKit/603 |
| Feature | Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
|---|---|---|---|---|---|
| Basic support | No support | No support[1] | No support | No support | No support |
[1] This feature is not implemented yet. See bug 1223880.
© 2005–2017 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/CSS/initial-letter