1 out of 1 rated this helpful - Rate this topic

Type selector

Matches any element of the specified type.

CSS 2.1

Syntax

E {...}

Parameters

E

String that specifies the name of a document language element type.

Standards information

Remarks

A type selector matches every instance of the element type in the document tree.

Examples

The following style rule applies to all the H1 tags within the document.


<style>
    H1 { color:teal; font-variant:small-caps; letter-spacing:.1em; }
</style>

 

 

Send comments about this topic to Microsoft

Build date: 11/29/2012

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.