4

I'm looking for a css selector to select the inner div using the outerDivs class and data attribute. As I only want to be able to select the inner div if the data is set to true is this possible ?

<div class="outerDiv" data-Outer="true"> 
  <div class="inner"> </div>
</div>
Michael Benjamin
  • 307,417
  • 93
  • 525
  • 644
Ryan Holmes
  • 487
  • 5
  • 14

1 Answers1

8

.outerDiv[data-Outer="true"] > .inner should do the trick.

trysmudford
  • 568
  • 5
  • 16