问题是没有要选择的 IMG 元素的兄弟。
你所拥有的是:
<div class="span12 dark">
<a href="http://whatever.org">
<img src="http://lorempixel.com/400/200">
</a>
<p class="description">I re-designed Trulia's iPhone and iPad experiences, surfacing local data and heatmaps, while improving the core search experience. The project was also an opportunity to define a new visual language for all of Trulia.</p>
</div>
你应该有这个:
<div class="span12 dark">
<a href="http://whatever.org">
<img src="http://lorempixel.com/400/200">
<p class="description">I re-designed Trulia's iPhone and iPad experiences, surfacing local data and heatmaps, while improving the core search experience. The project was also an opportunity to define a new visual language for all of Trulia.</p>
</a>
</div>