css – @import做什么?

我看到这段代码在哪里,我想知道@import应该做什么?我不认为这是服务器方面的事情.这是由浏览器处理??
<style type="text/css">
    @import "http://somedomain/dojo/dojo/resources/dojo.css";

    #lblTitle {
    font-size: 16px;
    color:#ffffff;
    font-weight:bold;
</style>

解决方法

The ‘@import’ rule allows users to import style rules from other style sheets. In CSS 2.1,any @import rules must precede all other rules (except the @charset rule,if present). See the section on parsing for when user agents must ignore @import rules. The ‘@import’ keyword must be followed by the URI of the style sheet to include. A string is also allowed; it will be interpreted as if it had url(…) around it.

Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification

相关文章

Css3如何实现鼠标移上变长特效?(图文+视频)
css3怎么实现鼠标悬停图片时缓慢变大效果?(图文+视频)
jquery如何实现点击网页回到顶部效果?(图文+视频)
css3边框阴影效果怎么做?(图文+视频)
css怎么实现圆角边框和圆形效果?(图文+视频教程)
Css3如何实现旋转移动动画特效