Answer the question
In order to leave comments, you need to log in
What could be the problem of Ipv6 inoperability?
Hello !
The matter is that my provider distributes native ipv6. no need to set up any brokers, teredos, etc.
The problem appeared relatively recently; did not notice what exactly started, but ipv6 began to turn off exactly 30 minutes after connecting to the network. Without preconnection, as if there was no ipv6.
It was worth it before connecting and the Internet via ipv6 is again available, but exactly for 30 minutes.
And now there is no ipv6 at all, from the very beginning.
On ubuntu and win8 ipv6 works, does not disappear. I don't understand what happened on win7.
Answer the question
In order to leave comments, you need to log in
A question at once, technology of distribution of the address? DHCPv6 or Stateless or hybrid?
Because nth counts by tree, not by selector. And the selector is an extra. condition, i.e. AND 3 down the tree, AND .bar class, which of course doesn't match your condition.
Crutch solution: codepen.io/anon/pen/QKzXoq
<div>
<p class="foo"></p>
<p class="foo"></p>
<p class="bar"></p>
<p class="bar bar--yellow"></p>
<p class="bar bar--yellow"></p>
<p class="bar"></p>
</div>
.bar--yellow {
color: yellow;
}
.bar:nth-child(4),
.bar:nth-child(5) {
color: yellow;
}
With such a construction (if it is not known how many foo elements are ahead and they can be mixed up), there is no way to CSS.
Use a wrapper or additional classes.
Or JS
You need
.element:nth-of-type {
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question