html – 以hash(#)开头的id的CSS选择器

前端之家收集整理的这篇文章主要介绍了html – 以hash(#)开头的id的CSS选择器前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在学习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

原文链接:https://www.f2er.com/html/224189.html

猜你在找的HTML相关文章