选择正文中的最后一个 iFrame



>想象一下我有

<body>
<iframe src=""></iframe>
<iframe src=""></iframe>
</body>

我想选择最后一个。

我试过body:last-child但没有用。知道怎么做吗?

应该是

iframe:last-of-type { ... }

最新更新