<div id="foo"> <img src="bar.png" align="right"> <img src="cat.png" align="right"> </div>
现在我的问题是在上面的代码中如何在CSS中定位一个特定的图像?
#foo img:nth-child(2) { css here }
要么
#foo img:first-child { css here } #foo img:last-child { css here }