0

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?

gawi
  • 2,843
  • 4
  • 29
  • 44

1 Answers1

4

You could try this

div[style*="display:table-cell"]
RacoonOnMoon
  • 1,556
  • 14
  • 29