My table has 3 rows and 3 data cells.
To select the first row, first data cell, and all bold tags from it:
tr + td b {}
To select the second row, second data cell, and all bold tags from it:
tr+tr > td+td b {}
I need help selecting them without using nth-child
due to lack of support in IE8 and earlier versions.
Could someone correct those selectors for me? I believe my current approach is incorrect and not accurately selecting the desired elements.