I have html that looks like:
<div style="display: table">
  <div style="display: table-row">
     <div style="display: table-cell">
       ... some content
     </div>
     <div style="display: table-cell">
       second cell content
     </div>
   </div>
 </div>
I'm searching for css selector that would match all divs that have display: table-cell style. Is it possible?