A mix of styles similar to the above methods can also be applied. For example, the paragraph-specific approach can be used to negate the paragraph-marking indentation style for a single paragraph in favor of the full-paragraph indentation approach commonly used for a quotation block, which can be applied more easily with the margin and/or padding properties rather than with text-indent. This particular approach can also be combined with a special definition of the "p tag" global style using a CSS formatting class-specific definition as follows:
<head><style> p.indented { text-indent: 4.0cm; } </style></head>
The definition of the "p tag" for which the class-targeted formatting needs to be applied then looks like the following:
<p class="indented">Text goes here</p>
A variation on the class-specific formatting approach can be applied by setting an identification of the "p tag" to be formatted as indented using the following style definition:
<head><style> #indentedtext { text-indent: 4.0cm; } </style></head>
The resulting "p tag" would then look something like this:
<p id="indentedtext">Text goes here</p>
Note: The examples here only use alphabetic characters, and for good reason: most browsers (including Firefox) cannot read definitions of these types whose definitions (specifically in the "#indentedtext" and ".indented" parts) start with a numeric character in the space where the definition identifier begins (that is, the spot immediately after the "# or "." characters). As such, do not use a numeric character to start a CSS definition targeted at a class or identifier definition in the applicable portions of the definition identifier.