Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

initial-letter

This article needs a technical review. How you can help.

This article needs an editorial review. How you can help.

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.

Summary

The initial-letter CSS property specifies styling for dropped, raised, and sunken initial letters.

Initial valuenormal
Applies to::first-letter pseudo-elements and inline-level first child of a block container
Inheritedno
Mediavisual
Computed valueas specified
Animation typediscrete
Canonical orderthe unique non-ambiguous order defined by the formal grammar

Syntax

/* 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;

Values

normal
No special initial-letter effect. Text behaves as normal.
<number>
This first argument defines the size of the initial letter, in terms of how many lines it occupies. Negative values are not allowed.
<integer>
This optional second argument argument defines the number of lines the initial letter should sink. Values must be greater than zero. If omitted, it duplicates the first argument, floored to the nearest positive whole number.

Formal syntax

normal | [ <number> <integer>? ]

Example

CSS content

.normal {
  initial-letter: normal;
}
.onefive {
  initial-letter: 1.5;
}
.three {
  initial-letter: 3.0;
}

HTML content

<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>

Output

Specifications

Specification Status Comment
CSS Inline Layout
The definition of 'initial-letter' in that specification.
Working Draft Initial definition

Browser compatibility

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support No support No support No support No support AppleWebKit/603
Feature Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support No support No support No support No support No support

Document Tags and Contributors

 Contributors to this page: OlofT, Sebastianz, Ruggero
 Last updated by: OlofT,