我正在学习css和html,我遇到了一个我从来没有想到的问题,我必须选择一个ID,ID是以下内容:
<header id="#Test">Testing Test</header>
每次我尝试在我的css样式表上选择这个id总是似乎是一个问题:
##Test { color: red; }
解决方法
您可以使用[att = val]选择器.
header[id="#Test"] { color: red; }
<header id="#Test">Testing Test</header>
[att=val] Represents an element with the att attribute whose value is
exactly “val”.
Rerefence:Attribute presence and value selectors