Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
对于 Web 开发人员来说,这可能是微不足道的,但 shape-id 是什么?
如<hr shape-id="2">.
<hr shape-id="2">
我正在尝试更改网站中 hr 行的颜色,但似乎在 css 中的任何地方都找不到它。
我知道 id 可以由 by#someId和 class by找到,.someClass但我如何找到 shape-id?
#someId
.someClass
我尝试添加hr{}到我的 CSS,但它似乎没有工作。
hr{}
顺便说一句,我在 Orchard CMS 工作。
它是一个属性,而不是 ID,您需要使用属性选择器来选择它。
[shape-id="2"] { color: #f00; background-color: #f00; height: 5px; }
检查演示。