1
ボディクラス内でさらにクラスを呼び出すことはできますか?私には例がある。ボディクラス別コールクラス
私はボディクラス "class-for-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
}
しかし、私はまた、同じサブクラスを持つクラス「クラス用-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
}
は一緒にそれらを呼び出すためにそこの方法です?
よろしく、 ロバート
をワイルドカードセレクターを使用することができます。 – j08691