如何选择没有子元素的父元素?

时间:2019-10-14 15:04:35

标签: css

我不知道如何仅选择css中没有跨度的h1 HTML:

  <h1>
    <span>hello from spam</span>
    <br> 
    heloo from h1 
  </h1>

2 个答案:

答案 0 :(得分:0)

CSS中没有父选择器。检查:

Is there a CSS Parent selector?

Parent selectors in CSS

您可以做的是对两个元素进行样式设置,然后为孩子重新编写样式。例如:

h1{
    color:blue;
}

h1 > span{
    color:black;
}

答案 1 :(得分:-1)

您可以在标签<h1>内添加样式。例如:

<h1 style="color:red;">