html – 如何使用CSS中的空格引用长类名?

前端之家收集整理的这篇文章主要介绍了html – 如何使用CSS中的空格引用长类名?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试设计一些Drupal输出.特别是,我试图用一个超长的名字(包括空格)引用一个类.我不清楚这个的语法.原谅我,我是一个CSS新手.看到:
<article id="node-38" class="node node-article node-teaser contextual-links-region node-even published with-comments node-teaser clearfix" about="/~actionin/node/38" typeof="sioc:Item foaf:Document">
    <header>
        <h2 property="dc:title" datatype=""><a href="/~actionin/node/38">National Nutrition Month: March 2012: “Get Your Plate in Shape”</a></h2>

我最终要参考H2的属性.我以为会是这样的:

.node SOMETHING-HERE .header h2 { declaration; }

我不能仅仅引用节点,因为它被用于其他地方用于其他目的.我想要具体,只选择这个类:

class="node node-article node-teaser contextual-links-region node-even published with-comments node-teaser clearfix"

解决方法

使用点(.)可以组合多个类
.node.node-article.node-teaser.contextual-links-region.node-even.published.with-comments.node-teaser.clearfix {
 ...
}
原文链接:https://www.f2er.com/html/231259.html

猜你在找的HTML相关文章