id 选择器
id 选择器用于为单个唯一元素指定样式。
id 选择器使用 HTML 元素的 id 属性,并用“#”定义。
下面的样式规则将应用于 id="InHereWeAreUsingId" 的元素:
http://www.w3schools.com/cssref/sel_id.asp
http://www.w3.org/TR/CSS2/selector.html
http://www.w3schools.com/css/css_id_class.asp
HTML
<div id="InHereWeAreUsingId">In Here We are using a Id to Identify this div </div>
CSS
#InHereWeAreUsingId
{
text-align:center;
color:red;
}
所以在你的问题中
HTML
<div id="site-title">
<a href="http://**.com/" rel="home">
<img src="http://**.com/wp-content/uploads/2013/05/transparent-logo.png" alt="" width="369" height="66">
</a>
<a class="home" href="http://**.com/" rel="home"></a>
</div>
CSS
#site-title > img{
}