I have an element like that
<h4><a href="#">Something</a></h4>
<h4>Something else</h4>
And I'd like to style the parental h4-element. Is that possible? So I am looking for somtehhing like
h4~ h4>a{
// I don't know the correct operator instead of "~"
border-bottom:10px solid blue;
}
h4{
border-bottom.5px solid red;
}
...
– Mr Lister Apr 12 '18 at 19:39