如何使用SASS和CSS模块制作组成的班级名称样式

发布于 2025-01-20 06:35:37 字数 719 浏览 0 评论 0原文

我有一个下一个项目。JS项目,我正在使用SCSS/SASS进行样式研究。我试图找出简化班级名称样式的最佳方法。

因此,现在我遇到了以下问题:

我有一个类似的组件:

import styles from './component.module.scss';

const Component = () => {
  return (
    <div className={styles.container}>
      <div className='content'>
        ...
      </div>
    </div>
  );
}

我想制作一个简单的.scs,例如:

.container {
  background-color: red;

  .content {
    background-color: blue;
  }


}

.container效果很好。但是,要能够应用.content我将不得不将第二个Div的className更改为{styles.content},而不仅仅是content

有没有一种方法可以使用styles.class仅在组件的顶部div中,而不必为每个孩子的div使用它?

I have a Next.js project and I'm studying using SCSS/SASS for styling. I'm trying to figure out the best way to simplify the class name styling.

So right now I'm having the following problem:

I have a component like:

import styles from './component.module.scss';

const Component = () => {
  return (
    <div className={styles.container}>
      <div className='content'>
        ...
      </div>
    </div>
  );
}

I would like to make a simple .scss like:

.container {
  background-color: red;

  .content {
    background-color: blue;
  }


}

The class .container works well. But to be able to apply .content I would have to change the 2nd div's classname to {styles.content} instead of just content.

Is there a way to use styles.CLASS only in the top div of the component and not have to use it for every children's div?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

執念 2025-01-27 06:35:37

您可以在app.js中添加全局样式表,并在任何地方使用它:

<div className='content'> ... </div>

或模块样式表格,然后使用它,只有

import styles from './component.module.scss';

    <div className={styles.container}> ... </div>

在您需要的情况下,只有在您导入的文件中使用它:

 <div className={styles.container}>
      <div className='content'>
        ...
      </div>
 </div>

您需要创建2个样式图

  1. 一个模块样式表并将其导入到特定文件
  2. 全局样式表并将其导入到app.js

You can Add a Global Stylesheet to app.js, and use it like that everywhere:

<div className='content'> ... </div>

or a module Stylesheet, and use it like that, only in files you imported it

import styles from './component.module.scss';

    <div className={styles.container}> ... </div>

if you want it like that:

 <div className={styles.container}>
      <div className='content'>
        ...
      </div>
 </div>

you need to create 2 Stylesheets

  1. a module Stylesheet and import it to a specific file
  2. a global Stylesheet and import it to app.js
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文