是否可以在body类中调用更多类?我有一个例子。
我有一个身体类“class-for-body”。使用此body类,我只在该页面上指定其他类。我一直这样做是这样的:
body.class-for-body .other-class,
body.class-for-body .other-class-new,
body.class-for-body .other-class-more,
body.class-for-body .other-class-left {
styling shizzle
}
但我也有一个带有“class-for-newbody”类的主体,它具有相同的子类:
body.class-for-newbody .other-class,
body.class-for-newbody .other-class-new,
body.class-for-newbody .other-class-more,
body.class-for-newbody .other-class-left {
styling shizzle
}
有没有办法把它们召集在一起?
此致 罗伯特
答案 0 :(得分:3)
您也可以使用通配符选择器,例如......
body[class*='class-for-'] {
/* todo */
}