我的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选择器。有可能吗?
答案 0 :(得分:4)
你可以试试这个
div[style*="display:table-cell"]