CSS选择器不是元素类型的孩子?

CSS Selector for not a child of element type?(CSS选择器不是元素类型的孩子?)
本文介绍了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选择器不是元素类型的孩子?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

How to find a User ID from a Username in Discord.js?(如何从 Discord.js 中的用户名中查找用户 ID?)
Discord js reaction not detected(未检测到 Discord js 反应)
Joining a voice channel on ready (discord.js)(准备好加入语音频道(discord.js))
Cannot read properties of undefined when it shouldn#39;t be undefined in discord.js command handler(当不应该在 discord.js 命令处理程序中未定义时,无法读取未定义的属性)
Why messageReactionAdd do nothing discord.js(为什么 messageReactionAdd 什么都不做 discord.js)
How do I list all Members with a Role In Discord.Js(如何在 Discord.Js 中列出所有具有角色的成员)