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.
我正在尝试将 CSS 应用于父容器元素的任何直接子元素。如何使用 CSS 的后代<选择器来选择任何直接子级,而不管类型如何(div / span / 等)。
<
我假设您的意思是子选择器。是>,不是<。
>
.parent > *
这将选择任何元素。您当然可以使用任何其他选择器作为子选择器(元素、类、id 等)
如果您在 SCSS 中,那么
.parent { & > * { } }