带有'display:table-cell'的div的css选择器

时间:2017-08-03 08:44:40

标签: html css css-selectors

我的html看起来像:

<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>

我正在搜索匹配所有具有display: table-cell样式的div的css选择器。有可能吗?

1 个答案:

答案 0 :(得分:4)

你可以试试这个

div[style*="display:table-cell"]