Skip to content

Atom CSS 是什么?

Posted on:2024年7月22日 at 09:23

Atom CSS:原子CSS,意思是一个类只干一件事。

不同于大家常用的BEM这类规则,原子css就是拆分,所有 CSS 类都有一个唯一的 CSS 规则。例如如下

.w-full {
  width: 100%;
}
.h-full {
  height: 100%;
}

而像这种就不是

.w&h-full{
  width:100%;
  height:100%;
}

当我们使用的时候,直接写class名就可以

<html>
  <body>
    <div id="app" class="w-full h-full"></div>
  </body>
</html>

原子CSS的优缺点

原文转自:https://fe.ecool.fun/topic/b7956f38-87f5-4db6-958a-7ae47d60da9b