作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我将如何编写 css 来访问以下类“total total_plus hidden_elem”或“total total_plus”?
我有 class="total total_plus"和 class="total total_plus_elem"并且我需要通过 css 访问它们。访问它们的正确方法是什么?
.total total_plus
{
display:none;
}
不适合我。
这是我要访问的内容的上下文:
<div class="bigbox">
<div class="full_widget">
<div class="connections">
<span class="total total_plus"></span>
<span class="total hidden_elem"></span>
</div>
</div>
</div>
谢谢
最佳答案
要做到这一点,CSS 中的所有类都必须直接紧接在另一个后面 – 没有空格。
.total.total_plus
和
.total.hidden_elem
关于css - 我将如何编写 css 来访问以下类 "total total_plus hidden_elem"或 "total total_plus"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8163714/
我将如何编写 css 来访问以下类“total total_plus hidden_elem”或“total total_plus”? 我有 class="total total_plus"和 c
我是一名优秀的程序员,十分优秀!