This question already has answers here:
Which characters are valid in CSS class names/selectors?
                                
                                    (9个答案)
                                
                        
                                2年前关闭。
            
                    
大家好,我有一个div class="hello&world"

如何在CSS文件上使用它?

我尝试了.hello&world{display: none},但是我不能将&放入该文件中。

有什么办法吗?

最佳答案

您只需要使用&转义\



.hello\&world {
  color: red;
}

<div class="hello&world">test</div>

关于html - 如何在CSS中传递符号和? ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45549658/

10-13 01:44