CSS Selector for not a child of element type?(CSS选择器不是元素类型的孩子?)
问题描述
我想为 a
标签内的 code
元素设置样式.
I want to style code
elements that are not inside a
tags.
实现这一目标的最佳方法是什么?
What is the best approach to accomplish this?
code:not(a code)
似乎根本不起作用,至少在 Chrome 上,即使它 似乎应该
code:not(a code)
doesn't seem to work at all, at least on Chrome, even though it seems like it should
我也无法通过控制台运行它.
I can't get it to work from the console either.
还有其他我可以使用的纯 css 方法吗?
Are there any other css-only approaches I could use for this?
推荐答案
:not
不支持组合选择器.
如果我们谈论的是它的直接父母:
If we're talking about its direct parent:
:not(a) > code
否则在 CSS 中无法做到这一点.您必须覆盖它:
Otherwise there's no way to do this in CSS. You'll have to override it:
code {
/* some styles */
}
a code {
/* override previous styles */
}
这篇关于CSS选择器不是元素类型的孩子?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:CSS选择器不是元素类型的孩子?


- 失败的 Canvas 360 jquery 插件 2022-01-01
- Quasar 2+Apollo:错误:找不到ID为默认的Apollo客户端。如果您在组件设置之外,请使用ProvideApolloClient() 2022-01-01
- Css:将嵌套元素定位在父元素边界之外一点 2022-09-07
- 400或500级别的HTTP响应 2022-01-01
- 使用RSelum从网站(报纸档案)中抓取多个网页 2022-09-06
- CSS媒体查询(最大高度)不起作用,但为什么? 2022-01-01
- Fetch API 如何获取响应体? 2022-01-01
- 如何使用 JSON 格式的 jQuery AJAX 从 .cfm 页面输出查 2022-01-01
- Flexslider 箭头未正确显示 2022-01-01
- addEventListener 在 IE 11 中不起作用 2022-01-01