我是Magento的初学者,但我已经获得了超过10,000行的css文件。在我出现之前,该网站有一些开发人员正在研究它(我是新的),所以我不确定什么是自定义以及主题的一部分。没有评论,似乎有某种基于网格的CSS框架以及normalizer.css
这是一个典型的电子商务网站,包含购物车,检查步骤等。 10,000多行css是否过度杀伤?我真的不知道从哪里开始。
另外,我注意到很多类都有自己的规则,本质上是一个mini-clearfix。 例如:
.first-item:after, first-item:before {
content: " ";
display: table;
}
.first-item:after {
clear: both;
}
.second-item:after, first-item:before {
content: " ";
display: table;
}
.second-item:after {
clear: both;
}
这有必要吗?为什么不将clear-fix类放到这些元素上,或者至少将这些规则组合到:
for example:
first-item:before, first-item:after,
second-item:before, second-item: after, {
....
}
我有点不知道我不知道的情况,所以如果你们能让我知道文件是否过度,或者我只是不知道我是什么我正在做。