的HTML看起來像這樣:CSS相鄰選擇問題
<div id="content_wide">
<div class="photo-center borderless"><img src="http://example.com/travel-path-map.png" alt="" title="" /></div>
...但由於某種原因,我似乎無法針對圖片中心DIV這樣的:
#content_wide + .photo-center { margin-top:10px }
有趣足夠,一個更普遍的兒童選擇器的作品:
#content_wide > .photo-center { margin-top:10px }
想法?
啊!是。大腦今天有點慢。只有當它是content_wide的第一個後代/孩子時,纔有任何方法來定位照片中心? – Craig
'#content_wide .photo-center:first-child' should should target'.photo-center' if if it's first child –
完美。謝謝你,詹姆斯 – Craig