CSS 模块

CSS 模块

此文档仅与使用 经典 Remix 编译器 相关。如果您使用的是 Remix Vite,对 CSS 模块的支持内置于 Vite 中

要使用内置的 CSS 模块支持,首先确保您已在应用程序中设置了 CSS 打包

然后,您可以通过 .module.css 文件名约定选择加入 CSS 模块。例如

.root {
  border: solid 1px;
  background: white;
  color: #454545;
}
import styles from "./styles.module.css";

export const Button = React.forwardRef(
  ({ children, ...props }, ref) => {
    return (
      <button
        {...props}
        ref={ref}
        className={styles.root}
      />
    );
  }
);
Button.displayName = "Button";
文档和示例使用以下许可证 MIT