是否可以在CSS选择器中使用通用元素?

时间:2014-10-21 20:28:35

标签: html css

例如,让我们说我希望h1title下的每个元素都有margin-top 30px,因为有时这个元素在它下面是h2,有时候它是p,有时候是my-class类的元素,等等。有什么东西可以等同于

h1.title + h2, 
h1.title + p, 
h1.title + .my-class,
.... [Any other possible element under h1.title !!!]
{
...
}

2 个答案:

答案 0 :(得分:3)

使用h1.title + * {margin-top:30px;}

答案 1 :(得分:0)

这个解决方案怎么样?

h1.title {
     margin-bottom: 30px;
}