2 回答
TA贡献2021条经验 获得超8个赞
决定了用如下的,bem推荐的方式,创建新的块来解决
现在就是两个block了,ranks为一种块 rank为一种块
错误
<section class="comments">
<h2 class="comments__title"></h2>
<article class="comments__comment">
<h3 class="comments__comment-title"></h3>
</article>
<article class="comments__comment">
<h3 class="comments__comment-title"></h3>
</article>
</section>
正确 comments块和comment块
<section class="comments">
<h2 class="comments__title"></h2>
<article class="comment">
<h3 class="comment-title"></h3>
</article>
<article class="comment">
<h3 class="comment-title"></h3>
</article>
</section>
添加回答
举报