令人困惑的CSS-任何人都可以解释

时间:2019-05-26 15:40:11

标签: css

我知道css中的点是类,但是应该在下面的页面中找到的.touchDownRepeath2是什么?

h1

h1 { font-size: 30px; line-height: 32px; } h2.h1 { font-size: 36px; line-height: 40px; } .title.title_size_medium h1 { font-size: 38px; line-height: 38px; } 标签本身从未在页面中使用。

非常感谢

2 个答案:

答案 0 :(得分:3)

h2.h1正在选择一个类别为h2的{​​{1}}元素:

h1
h1 {
  font-size: 30px;
  line-height: 32px;
  color: red;
}

h2.h1 {
  font-size: 36px;
  line-height: 40px;
  color: blue;
}

.title.title_size_medium h1 {
  font-size: 38px;
  line-height: 38px;
  color: grey;
}

答案 1 :(得分:0)

h2.h1在html中选择<h2>标签,而.h1 css类使用h2 css类中的样式来为h2标签设置样式。