我知道css中的点是类,但是应该在下面的页面中找到的.touchDownRepeat
点h2
是什么?
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;
}
标签本身从未在页面中使用。
非常感谢
答案 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标签设置样式。