@import

Support Key: CSS1 | CSS2 | IE4 | O3.5
Other
At-Rules

@charset
@media
@page
@fontdef
@font-face
= Index DOT Css by Brian Wilson [bloo@blooberry.com] =
Main Index | Property Index | CSS Support History | Browser History



What is it?
This At-Rule syntax imports a style sheet fragment file to the current style sheet. It may be used in External and Embedded style sheets, but not with inline styles. Furthermore, multiple fragments can be imported in to a single style sheet, but all @import statements must occur before any style declaration Rule-Sets in the style sheet.

An optional, case-insensitive argument can be specified after the URL of the fragment indicating one or more target media where the fragment should be applied (the default if no media is specified is "all".) Specifying media dependent styles via @import can be more efficient than @media At-Rules, because unneeded style fragments do not need to be downloaded or parsed in the @import case.
Media Types Specified in CSS2
AllAural
BrailleEmbossed
HandheldPrint
ProjectionScreen
TtyTv
Syntax
Syntax1: @import "[URL]" ([media] ("," [media])+ )? ";"
Syntax2: @import url("[URL]") ([media] ("," [media])+ )? ";"
Examples
@import url("foo.css") screen, print;
Browser Peculiarities

Boring Copyright Stuff....