如何在ITCSS项目中包含外部库?

时间:2016-09-07 11:03:21

标签: html css sass file-organization itcss

我在main.scss中有这个结构:

//******** ITCSS layers :: https://www.xfive.co/blog/itcss-scalable-maintainable-css-architecture/
//** 1. Settings – used with preprocessors and contain font, colors definitions, etc.
//** 2. Tools – globally used mixins and functions. It’s important not to output any CSS in the first 2 layers.

//** 3. Generic – reset and/or normalize styles, box-sizing definition, etc. This is the first layer which generates actual CSS.
//** 4. Elements – styling for bare HTML elements (like H1, A, etc.). These come with default styling from the browser so we can redefine them here.
//** 5. Objects – class-based selectors which define undecorated design patterns, for example media object known from OOCSS
//** 6. Components – specific UI components. This is where majority of our work takes place and our UI components are often composed of Objects and Components
//** 7. Trumps – utilities and helper classes with ability to override anything which goes before in the triangle, eg. hide helper class
//********

// Settings
@import "settings/settings.global";

// Tools
@import "tools/tools.extend";
@import "tools/tools.mixin";

// Elements
@import "elements/elements.page";

// Components
@import "components/components.overlay";
@import "components/components.slice";
@import "components/components.text";

// Trumps
@import "trumps/trumps.utilities";

在我的index.html中,我包括main.css和via bower或npm,其他外部库,如normalize,bootstrap-grid或animate.css。 导入其他库的正确方法是什么?在main.scss之前,之后或之内?我有这个疑问,因为重要的是不要在前两层中输出任何CSS。此外,这些文件通常都是纯粹的CSS,我不能在我的* .scss内部进行@import。< / p>

感谢

<head>
    <!--build:css css/main.min.css -->
    <link rel="stylesheet" href="bower_components/normalize-css/normalize.css">
    <link rel="stylesheet" href="bower_components/bootstrap-v3-grid/bootstrap-v3-grid.css">
    <link rel="stylesheet" href="style/css/main.css">
    <!-- endbuild -->
</head>

1 个答案:

答案 0 :(得分:2)

我会将Normalize.css符号链接到Sass文件(_generic.normalize.scss)并将其导入Generic图层。

我会将Bootstrap符号链接到Sass文件(_objects.grid.scss)并将其导入到Objects层。

这将使ITCSS顺序保持正确,并将渲染阻止CSS简化为一个HTTP请求。

相关问题