标签: css css-selectors
我正在尝试在下面的屏幕截图中定位所有其他iframe。
我可以使用nth-child吗?也许类似下面的代码(虽然这不起作用)?
#main iframe:nth-child(2n+2)
答案 0 :(得分:6)
使用这种精确的HTML结构,您需要这个选择器:
#main iframe:nth-child(4n+2)
如果您希望从第一个iframe而不是第二个+2开始,请删除{{1}}。
iframe
+2