@import is another way of using external stylesheets like <LINK>
Code:
<STYLE TYPE="text/css">
@import url("yourcssfile.css");
</STYLE>
You can safely drop the url( ) notation. The following example therefore has the same effect as the previous one:
Code:
<STYLE TYPE="text/css">
@import "yourcssfile.css";
</STYLE>
When you are importing CSS using @import you need to specify <style></style> and the @import statement must be the first line.
The most common use of @import is to hide incorrectly implemented CSS from IE4/NS4/O5 as they don't support @import so you can take advantage of that to present one type of CSS for them and different CSS for other browsers.
Check this article to get more idea about hiding the CSS from some browsers
Bookmarks