You can use:
div.table-view > div[class="table-cell"] { color: #f00; }
This means that the class exactly matches the "table-cell", without additional functions.
You can also use [class*="table-cell"] , which means that it is contained anywhere in the attribute of the class, so it will correspond to the class "table-cell-blargh". You can also use ^= (starts with) and $= (ends), and you can search for any attribute (e.g. href) using this method.
See this article on attribute selectors.
source share