1.logo 图片换文字
比较好的方法,就是用背景图呈现,标签中写文字,因为文字能被搜索引擎抓取。(background)
<h1><a href="##"><img src="img/logo.png" ></a></h1> (优化不好)
更改为 <h1><a href="###">logo(公司名称)</a></h1>
通过以下3种方式让用户看不见优化引擎的logo文字
方法一:
1 h1 a{
2 display: block;
3 height: 58px;
4 background: url(img/logo.png) no-repeat;
5 text-indent:-9999em; /*把文字移出到屏幕外*/
6
}
方法二:
1 h1 a{
2 display: block;
3 height: 58px;
4 background: url(img/logo.png) no-repeat;
5 padding-top:58px;
6
}
方法三:
1 h1 a{
2 display: block;
3 height: 58px;
4 background: url(img/logo.png) no-repeat;
5 line-height:1000px;
}