For AI agents: the complete documentation index is available at /next/zh/llms.txt, the full documentation bundle is available at /next/zh/llms-full.txt, and this page is available as Markdown at /next/zh/api/css/at-rule/import.md.
Lynx
  • 简体中文
  • '@import'

    @import 规则,用于从其他样式表导入样式规则。这些规则必须先于所有其他类型的规则,它不是一个嵌套语句,@import 不能在条件组的规则中使用。

    语法

    @import <string>;

    其中,<string> 表示字符串数据类型。

    示例

    @import 'custom.css';
    @import './custom.css';
    @import '/pages/card/index.css';
    除非另有说明,本项目采用知识共享署名 4.0 国际许可协议进行许可,代码示例采用 Apache License 2.0 许可协议进行许可。