gpt4 book ai didi

css - ITCSS - 将特定于页面的类放在哪里

转载 作者:太空宇宙 更新时间:2023-11-04 06:57:26 26 4
gpt4 key购买 nike

我正在使用 ITCSS 来构建我的样式。现在我有一个包含图像的页面,我需要它的最大高度为 512 像素。此属性特定于该页面中的图像,因此使用 ITCSS 我应该将此属性放在哪里?该图像具有 Bootstrap 的 img-fluid 类。另一个问题是,使用 ITCSS 我可以为特定页面创建样式,还是应该使用 ITCSS“强加”的结构来组织我的样式?

最佳答案

这取决于您拥有多少页面特定样式。

一种方法是将图像设置为图像的变体。像<img class="c-img c-img-fixed-hero" src="/path" />"一样使用.

.c-img {} // general image styling
.c-img--fixed-hero {} // special styling for this use case

另一种方法是创建页面组件并使用修饰符为每个变体应用单独的样式。

// shared page styling
.c-page {}

// unique home styling
.c-page--home {
.c-img {}
}

// unique about styling
.c-page--about {
.c-img {}
}

关于css - ITCSS - 将特定于页面的类放在哪里,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52343881/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com