ProductDetailsEditButton

ProductDetailsEditButton

This question already has answers here:
when to leave space ,when not in CSS?
                                
                                    (7个答案)
                                
                        
                                5年前关闭。
            
                    
我在称为ProductDetailsEditButton的详细信息视图中将样式应用于按钮字段。我以为选择器的名称将因此为td .ProductDetailsEditButton,但这没有用。但是,当我将其命名为td.ProductDetailsEditButton(没有空格)时,它确实起作用了。

两者之间是否必须有空间?总是这样吗?还是取决于?抱歉,命名惯例似乎不一致,我想知道我所忽略的内容。

最佳答案

如果有空格,则表示选择器将匹配具有<td>class="ProductDetailsEditButton"子元素。例如:

<td>
    <div class="ProductDetailsEditButton">Button</div>
</td>


如果没有空间,它将匹配<td class="ProductDetailsEditButton">

关于asp.net - 命名CSS选择器的正确方法是什么?它的工作方式似乎不一致。,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8522994/

10-10 07:39